A StringBuilder that allows one to access the array.
Inheritance: ICharSequence
Exemplo n.º 1
0
 public void write(OpenStringBuilder arr)
 {
     write(arr.buf, 0, len);
 }
Exemplo n.º 2
0
 public void write(OpenStringBuilder arr)
 {
     write(arr.buf, 0, len);
 }
Exemplo n.º 3
0
 public void Write(OpenStringBuilder arr)
 {
     Write(arr.m_buf, 0, arr.Length); // LUCENENET specific - changed to arr.m_len (original was just len - appears to be a bug)
 }