次の C++/CLI クラスがあります。
public ref class MyClass
{
public:
int val;
bool operator==(MyClass^ other)
{
return this->val == other->val;
}
bool Equals(MyClass^ other)
{
return this == other;
}
};
の 2 つのインスタンスが等しいかどうかを C# から検証しようとするとMyClass
、間違った結果が得られます。
MyClass a = new MyClass();
MyClass b = new MyClass();
//equal1 is false since the operator is not called
bool equal1 = a == b;
//equal2 is true since the comparison operator is called from within C++\CLI
bool equal2 = a.Equals(b);
私は間違って何をしていますか?