InterviewSolution
Saved Bookmarks
| 1. |
How Can I Make Sure My C# Classes Will Interoperate With Other .net Languages? |
|
Answer» 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. 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. |
|