public static int GetIndexAfterNextDoubleQuote(this StringBuilder @this)
 {
     return(@this.GetIndexAfterNextDoubleQuote(0, false));
 }
 public static int GetIndexAfterNextDoubleQuote(this StringBuilder @this, bool allowEscape)
 {
     return(@this.GetIndexAfterNextDoubleQuote(0, allowEscape));
 }