Mega Code Archive

 
Categories / C# Book / 02 Essential Types
 

0238 Insert in the middle

To append a string with insert using System; class Sample { public static void Main() { string s = "rntsoft.com"; s = s.Insert(3, "C#"); Console.WriteLine(s); } }