A StringBuilder that allows one to access the array.
Inheritance: ICharSequence
Example #1
0
 public void write(OpenStringBuilder arr)
 {
     write(arr.buf, 0, len);
 }
Example #2
0
 public void write(OpenStringBuilder arr)
 {
     write(arr.buf, 0, len);
 }
Example #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)
 }