C# string slice

49

C# string slice -

string word = "hello";
string ordw = word.Substring(1) + word.Substring(0, 1);

Comments

Submit
0 Comments