3 writes to stringBuilder
WsatConfig (3)
CommandLine\OptionUsage.cs (3)
226this.stringBuilder = new StringBuilder(); 236this.stringBuilder = null; 244this.stringBuilder = null;
11 references to stringBuilder
WsatConfig (11)
CommandLine\OptionUsage.cs (11)
235WriteLine(this.stringBuilder.ToString()); 243WriteLine(this.stringBuilder.ToString()); 261Debug.Assert(this.stringBuilder != null, "stringBuilder cannot be null"); 265stringBuilder.AppendLine(text); 283stringBuilder.AppendLine(text); 336this.stringBuilder.Append(text, index, wordLength); 351this.stringBuilder.Append(test, start, this.BufferWidth); 363this.stringBuilder.Append(test, start, wordLength); 395this.stringBuilder.Append(text[index]); 404this.stringBuilder.Append(' ', this.indentLength); 411this.stringBuilder.AppendLine();