How do you ensure the assembly created in c# is
interoperable with vb.net?

Answers were Sorted based on User's Feedback



How do you ensure the assembly created in c# is interoperable with vb.net?..

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

How do you ensure the assembly created in c# is interoperable with vb.net?..

Answer / luigip

All built assemblies are compatible with all the CLR
languages without doing anything

Is This Answer Correct ?    2 Yes 2 No

How do you ensure the assembly created in c# is interoperable with vb.net?..

Answer / bhagyashri

Write above code in AssemblyInfo.cs File.

Is This Answer Correct ?    0 Yes 0 No

How do you ensure the assembly created in c# is interoperable with vb.net?..

Answer / muralik.it

hello srikanth where can we write this code

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is console application with example?

0 Answers  


How do you comment in c#?

0 Answers  


What is the difference between “finalize” and “finally” methods in c#?

0 Answers  


What is serialization in dot net?

0 Answers  


what are the events in delegate?

2 Answers   Choice Solutions,






Define a partial class?

0 Answers  


What are the classes contained in a single .NET DLL ?

0 Answers   Siebel,


What is the difference between static and private constructor?

0 Answers  


What is a static class in c#?

0 Answers  


What is datagridview in c#?

0 Answers  


What is lastindexof c#?

0 Answers  


How do you create multiple inheritance in C#?

5 Answers   Microsoft,


Categories