Using VB DLLs in other languages

otherside

Centurion
Joined
Mar 16, 2003
Messages
127
Location
UK - Greece
Hey guys,
If i create a class library in vb.net, and compile to a DLL,
is it possible to use this dll in the other laguages of the .NET
say C++ ?

Also is it possible to use it with languages in a different enviroment, like Borland's C++ builder ?

Thanks
 
a .net DLL is compatible with any other .net language

they will not work with non .net supported compilers

lastly, they are specific to the version of .net used(ie, a DLL compiled in 2003 will not work with 2002, if any of the procedures use new .net technology)
 
thanks guys,
one more short question,
Visual studio.NET 2003 Uses .Net framework 1.1
and visual studio.NET 2002 uses .net framework 1

Is that correct ?
If an application is made with vs.net 2002 and .net framework 1
will it run in a system with installed .net framework 1.1 only ?
 
yes, an application made with framework 1 will work on a system with framework 1.1 installed

2002 = 1
2003 = 1.1
 
Back
Top