why c# not allowed operator overloading while C++ do?
I got this error, when trying to overload.
Overloadable binary operator expected
My sample code looks like,
public static MyClass operator +=(MyClass obj1, MyClass obj2)
{
...
}