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
Is string primitive?
What is unmannaged code and will CLR handle this kind of code or not .
why delegate is type safe?
What is the difference between do and while loop?
Explain code compilation in c#.
What is bitwise operator in c#?
What is difference between string and string builder?
What do you mean by jagged arrays in c#?
What is the purpose of namespace?
Define an array?
What is Custom attribute? How to create? If I'm having custom attribute in an assembly, how to say that name in the code?
Define encapsulation?
In .NET which is the smallest unit of execution?
What is ienumerator c#?
What is default access specifier for class in c#?