1
Reply

How can I make sure my C# classes will interoperate with other .Net languages?

Samir Bhogayta

Samir Bhogayta

Jun 25, 2016
226
0

    Make sure your C# code conforms to the Common Language Subset (CLS). To help with this, add the [assembly: CLSCompliant (true)] global attribute to your C# source files. The compiler will emit an error if you use a C# feature which is not CLS-compliant.

    Samir Bhogayta
    June 25, 2016
    0