Beispiel #1
0
 // The following functions are debugging helpers, they are not
 // used normally.
 #pragma warning disable 0169
 private static void ShowChanges(TextWithChanges twc)
 {
     Console.WriteLine("\n***");
     foreach (TextChange change in twc.GetChanges())
     {
         Console.WriteLine("{0}, {1}", change.Position, change.IsDeletion);
     }
 }