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 are the advantages of properties in c#?
What is the difference between dynamic and var in c#?
Are c# strings null terminated?
Explain the difference between a namespace and assembly name in .net?
If you want to convert a base type to a derived type, what type of conversion do you use?
What do you understand by 'access specifiers' in C#?
What is data dictionary in c#?
What are tuples c#?
How do you mark a method obsolete?
What are jagged arrays used for?
What is the main method in c#?
how to implement a web service in .net
What is the difference between list and arraylist c#?
Does c# replace c++?
Explain what are three test cases you should go through in unit testing?