Пример #1
0
 /// <summary>
 /// Add a line comment to this TSObject.
 /// </summary>
 /// <param name="line">The line to add as a line comment to this TSObject.</param>
 public void LineComment(string line)
 {
     SetCurrentState(State.LineComment);
     builder.LineComment(line);
 }
Пример #2
0
 public void LineComment(string text)
 {
     SetCurrentState(State.Comment);
     builder.LineComment(text);
 }