internal void Replace(StringBuffer buf)
 {
     this.Replace(buf.buf);
 }
 public StringBuffer(StringBuffer buffer)
     : this()
 {
     buf.AddRange(buffer.buf);
 }
Exemple #3
0
 public void redo()
 {
     this.oldBuffer = new StringBuffer(this.buffer);
     this.buffer.ReplaceRegexAll(this.layoutLines, this.regex, this.replacePattern, this.groupReplace);
 }
Exemple #4
0
 public void redo()
 {
     this.oldBuffer = new StringBuffer(this.buffer);
     this.buffer.ReplaceAll(this.layoutLines, this.targetPattern, this.replacePattern, this.caseInsensitve);
 }
Exemple #5
0
 /// <summary>
 /// オブジェクトを破棄する
 /// </summary>
 /// <param name="disposing">真ならアンマネージドリソースを解放する</param>
 protected override void Dispose(bool disposing)
 {
     this.document = null;
 }