How do you ensure the assembly created in c# is
interoperable with vb.net?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / luigip
All built assemblies are compatible with all the CLR
languages without doing anything
Is This Answer Correct ? | 2 Yes | 2 No |
What is console application with example?
How do you comment in c#?
What is the difference between “finalize” and “finally” methods in c#?
What is serialization in dot net?
what are the events in delegate?
Define a partial class?
What are the classes contained in a single .NET DLL ?
What is the difference between static and private constructor?
What is a static class in c#?
What is datagridview in c#?
What is lastindexof c#?
How do you create multiple inheritance in C#?