Doubt on Interoperability

  • Thread starter Thread starter thomson
  • Start date Start date
T

thomson

Hi all,
We all know that in .net , we can use any languages , for eg in
vb.net or c# ,
i hope you can do multiple forms in multiple languages[Not clear
though]
Or reference dll written in Vb.net in C#..Ok

Is there any contraints in by doing this, such as any precautions,
that you should take before doing this,

Please gimme some links on this,
thanks in advance
Cheers

thomson
 
Your best bet is to use Microsoft's FxCop to check your assemblies.
FxCop will point out things like naming problems that might affect
other .NET languages, or declaring operators without supplying
alternate methods of using the operator from languages such as VB.NET.

You can find FxCop here:

http://www.gotdotnet.com/team/fxcop/
 
Hi

Read care fully the CLS documentations
It is a set of specifications that a component developer must obey inorder
to make their component interoperable

regards
Ansil
Trivandrum
 
Back
Top