Example #1
0
        public static char ExtractChar(this StringBuilder @this, int startIndex)
        {
            int endIndex;

            return(@this.ExtractChar(startIndex, out endIndex));
        }
Example #2
0
 public static char ExtractChar(this StringBuilder @this)
 {
     return(@this.ExtractChar(0));
 }
Example #3
0
 public static char ExtractChar(this StringBuilder @this, out int endIndex)
 {
     return(@this.ExtractChar(0, out endIndex));
 }