Use Vb.Net class in C#

  • Thread starter Thread starter Rohit Kaushal
  • Start date Start date
R

Rohit Kaushal

i am developing a smart device application in C#.I have a
builded a class in VB.net and i want to use this class in
my C# project.pls tell me how to go about it?Any pointers
will really be helpful.

rgds,
alok
 
You could compile your VB class into a DLL library and then you add a
reference to this library in your C# project.

Thomas.
 
Add the VB .NET project to your C# solution, then reference the VB .NET
project in your C# project. No need to compile a VB .NET assembly.

--Neil
 
Back
Top