Choose Category
using System; using System.Text; namespace forgetCode { class program { public static void Main() { StringBuilder sb1 = new StringBuilder("Time is gold"); sb1.Insert(0, "Try to use the time since "); Console.WriteLine(sb1); } } }