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 |
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?
To compute the monthly, half-yearly and annual sales made by all the salesmen of a company.
Can you change the value of a constant filed after its declaration?
What is overloading with example?
What is the implicit name and type of the parameter that gets passed into the class set method?
How To Maintain Transaction In C#?
1 Answers Phoenix Technologies,
What?s an interface class?
Is stringbuilder faster than string concatenation c#?
If i have 100 objects in my application are out of scope.when first time garbage collected how many objects memory reference are free?
What is tpl in c#?
What is the use of constructor in c# with example?
Can you change the value of a variable while debugging a C# application?