Answer: We must make sure that our C# classes conforms to th Common Language Subset(CLS).
For this we need to add a global assembly to our C# source files
Which can be depicted as :
[assembly: CLSCompliant (true)]
If we use a C# feature which is not CLS-Compilant the compiler will emit an error.
Found interesting? Add this to: