[Solved] When CLSCompliant(true) , Operators should not be overloaded C#?
[ad_1] CLS stands for Common Language Specification. The thing is that CLS is a subset of IL features which is supported by all .NET languages. In short, not every .NET language supports operator overloading. That’s why it is considered by the compiler as not CLS compliant. Update For example VB.NET does not support operators overloading. … Read more