Lines Matching refs:buffer
44 public static void append<T>( this StringBuilder buffer, T value )
46 buffer.Append( value );
50 public static char charAt( this StringBuilder buffer, int index )
52 return buffer[index];
56 public static int length( this StringBuilder buffer )
58 return buffer.Length;
62 public static void setCharAt( this StringBuilder buffer, int index, char c )
64 buffer[index] = c;
68 public static void setLength( this StringBuilder buffer, int length )
70 buffer.Length = length;