How do you ensure the assembly created in c# is
interoperable with vb.net?
Answer Posted / sreekanth m
use the below keyword. If the code is not CLS compliant, it
will throw compilation error.
// Tell compiler to check for CLS Compliance
[assembly:CLSCompliant(true)]
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the use of GC.KeepAlive Method?
What is the data type for bit in c#?
How do I simulate optional parameters to com calls?
What is the difference between dynamic type variables and object type variables in c#?
What is the implicit name and type of the parameter that gets passed into the class set method?
Why data types are important in c#?
What is the difference between string and stringbuilder in c#?
What is enum in c#?
What is variable and its classification?
What is difference between an reference type and value type in C#?
What are the return types in c#?
Is multiple inheritance possible in c#?
What is the difference between method and constructor in c#?
Can we maintain state in webservice?
What is thread pooling?