hello, my problem is i want to cut string but not from the end from the front. how to do it. i searched could not find suitable answer
i have got the solution we can use remove fuction for this purpose. e.g
string test2 = "0123456"; test2 = test2.Remove(0, 1); Console.WriteLine(test2);
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.