Transform VB.Net to C#

  • Thread starter Thread starter Dave Boal
  • Start date Start date
D

Dave Boal

Does anyone know if there is a Microsoft product that
converts VB.Net to C#?

I heard there was on called CLR - I think it it short for
Common Language Reader???

Thanks, Dave
 
Dave Boal said:
Does anyone know if there is a Microsoft product that
converts VB.Net to C#?

Not from Microsoft. There are various web sites and
download-able software packages that do this for free
or charge.
I heard there was on called CLR - I think it it short for
Common Language Reader???

The CLR is the Common Language Runtime and it's the heart
and core of .NET.

Normally, compilers compile programming language to
machine code which is directly executable.

..NET compilers compile to "Intermediate Language" or "IL"
which is then compiled by the CLR Just-In-Time for
performance benefits.

VB.NET and C# compilers produce very similar IL and it's
hard to tell the difference once they've been compiled.

-C
 
Back
Top