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 happens when thread sleep () method is called?
How main method is called in c#?
What is the difference between a function and a method?
What is the importance of closing an ado.net application?
Are enums static c#?
What is desktop example?
Can I call a virtual method from a constructor/destructor?
What is default constructor c#?
Can I use exceptions in c#?
What are primitive data types in c#?
What are satellite assemblies? How will you get the different language strings?
What is a value type in c#?
Can the accessibility of a type member be greater than the accessibility of its containing type?
What is datetime parse in c#?
How do you prevent a method from being overridden in c#?