With this HOW TO I would like to put together tips to make the code conversion VB to C# or C# to VB.
VB | C# |
Asc | Convert.ToInt32(); |
Chr | Convert.ToChar(); |
Len | String.Length(); |
Mid | String.Substring(); |
ChrW(65) | System.Convert.ToChar(65).ToString(); |
AscW('A') |
System.Convert.ToInt32('A').ToString(); |
This post will be updated continuously by inserting each time new information.
Any suggestion is welcome.
Did my HOW TO help you? Leave a reply.