otherside Posted December 5, 2003 Posted December 5, 2003 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 Quote
cel Posted December 5, 2003 Posted December 5, 2003 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) Quote
*Gurus* Derek Stone Posted December 5, 2003 *Gurus* Posted December 5, 2003 You can interact with .NET assemblies from any language that supports COM. Investigate "COM-callable wrappers". Quote Posting Guidelines
otherside Posted December 5, 2003 Author Posted December 5, 2003 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 ? Quote
cel Posted December 6, 2003 Posted December 6, 2003 yes, an application made with framework 1 will work on a system with framework 1.1 installed 2002 = 1 2003 = 1.1 Quote
Administrators PlausiblyDamp Posted December 6, 2003 Administrators Posted December 6, 2003 Yes, but there may be problems in regards to differences in the frameworks. http://www.gotdotnet.com/team/changeinfo/ http://msdn.microsoft.com/netframework/default.aspx?pull=/library/en-us/dnnetdep/html/sidexsidenet.asp Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.