How to remove first character in the string

Ssj_Kumar
Posted by Ssj_Kumar under C# category on | Points: 40 | Views : 1242
string strValue = "Hello World";
strValue = strValue.Substring(1, strValue.Length-1);

Comments or Responses

Login to post response