conversion tool.

  • Thread starter Thread starter Vincent
  • Start date Start date
V

Vincent

Hi I am a VB, VB.NET programmer that recently learned C#. Does any1 know of
a tool that let me type vbcode and translates it into c#. I found some tools
out there, but they only convert projects. That is too much work for me.

e.g I type (VB)
select case Ucase(txtInput.text)
case "HI"
Messagebox.show("HI")
case..
end select

This tool would translate it to
switch (txtInput.text)
{
case "HI":
Messagebox.show("HI");
break;
case ...
}

Thanks,

Vincent
 
Our Instant C# VB.NET to C# converter does exactly that (and projects also).
Download the Demo Edition at www.instantcsharp.com

Our converter is very good at incomplete code fragments - i.e., you don't
have to type in an entire class or even an entire method to get a good result.

David Anton
www.tangiblesoftwaresolutions.com
Home of the Instant C# VB.NET to C# converter and the Instant VB C# to
VB.NET converter
 
Back
Top