converting vb.net dll into c#.net

  • Thread starter Thread starter balamurukan
  • Start date Start date
B

balamurukan

hi,

i have vb.net dll .
Is it possible to convert vb.net into c#.net.
If so help me.

Balamurukan
 
Hi,

A managed dll just cannot be in vb.net or c#. What it actually contains is
binary instructions in MSIL (Microsoft Intermediate Language) plus some
metadata - much like regular .exe and .dll files contain CPU instructions
plus resources, relocation tables and other stuff the Windows loader needs
to run an application.

You can just reference this dll from your C# project and consume the exposed
functionality despite the original high level language it was developed in.
 
Back
Top