string ReplaceCharacter(string s, char newvalue) { return newvalue + s.Substring(1); }
Regards, Jayakumar Selvakani
string s1 = "11001010001010"; string s2 = s1 .Remove(0, 1); string s3 = "0" + s2; MessageBox.Show(s3.ToString());
If this post helps you mark it as answer Thanks
Login to post response