I want to disbale CLS complaiance checking. I'm new in C#, so can you please tell me how to do it for:
- The entire assembly
- smaller scope, maybe one file or one class...
Thanks, Li
|
I want to disbale CLS complaiance checking. I'm new in C#, so can you please tell me how to do it for:
Thanks, Li
| |||
|
feedback
|
|
You can use the CLSCompliant attribute to explicitly mark an assembly or type, e.g. for an assembly add the following line in AssemblyInfo.cs
for a class
You can also use it for specific type members (methods, properties, etc.) in a similar manner. | |||
|
feedback
|
|
You could use the Quote from the doc:
There's also possibility to supress compiler warnings. | |||
|
feedback
|