I heard that it's possible to import a c# file and use it's functions in a vb.net application? I have a C# file with a lot of functions, that I want to use, however, I don't want to convert it to vb.net (would take time). Is it possible? Thanks. HOw?
1 Answer
Compile it, and reference the DLL.
1 Comment
JDB
See "Project-to-Project References": Managing Project References
Imports xxxstatement to your code.