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
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