i\'m looking to place a value from a text box lets say \"12\" to a certain place in a string temp variable. Then I want to place another value after that say \"10\" but with
var sb = new StringBuilder(); sb.Append(beforeText); sb.Insert(2, insertText); afterText = sb.ToString();