Free Making Your Code CLS Compliant Tutorial

Feb
10

Making Your Code CLS Compliant

Posted by admin

If you are writing .Net classes, which will be used by other .Net classes irrespective of the language they are implemented, then your code should conform to the CLS [Common Language Specification]. This means that your class should only expose features that are common across all .Net languages. The following are the basic rules that should be followed when writing a CLS complaint C# code. 1. Unsigned types should not be part of the public interface of the class. What this means  
continue >>

Tags:

Add A Comment