public void SystemLargeInsertMany()
 {
     foreach (var index in InsertIndexes)
     {
         SystemSb.Insert(index, InsertText);
     }
 }
Esempio n. 2
0
 public void SystemStringBuilderRemoveMany()
 {
     SystemSb.Remove(0, 5);
     SystemSb.Remove(10, 5);
     SystemSb.Remove(0, 5);
     SystemSb.Remove(15, 5);
 }
Esempio n. 3
0
 public void SystemStringBuilderLargeAppendRemove()
 {
     SystemSb.Remove(10, 30);
 }
 public void SystemStringBuilderReplaceMany()
 {
     SystemSb.Replace("1618543976", "123");
     SystemSb.Replace("1813591724", "123");
     SystemSb.Replace("2018256345", "123");
 }
 public void SystemStringBuilderLargeAppendReplace()
 {
     SystemSb.Replace("2018256345", "123");
 }
 public string SystemStringBuilderLargeAppendToString()
 {
     return(SystemSb.ToString());
 }
 public void SystemLargeInsert()
 {
     SystemSb.Insert(InsertIndex, InsertText);
 }