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

If all code is written in a try block and write a catch block with Exception type Exception .In that scenario will all the exceptions catched by that catch block? or any exceptions which will not be caught?

3 Answers   Honeywell,


To compute the monthly, half-yearly and annual sales made by all the salesmen of a company.

1 Answers   Philips,


Can you change the value of a constant filed after its declaration?

0 Answers  


What is overloading with example?

0 Answers  


What is the implicit name and type of the parameter that gets passed into the class set method?

0 Answers  


How To Maintain Transaction In C#?

1 Answers   Phoenix Technologies,


What?s an interface class?

1 Answers  


Is stringbuilder faster than string concatenation c#?

0 Answers  


If i have 100 objects in my application are out of scope.when first time garbage collected how many objects memory reference are free?

2 Answers   ITC Infotech,


What is tpl in c#?

0 Answers  


What is the use of constructor in c# with example?

0 Answers  


Can you change the value of a variable while debugging a C# application?

1 Answers  


Categories