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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top