コード例 #1
0
ファイル: JSObject.cs プロジェクト: vrdmr/autorest.typescript
 /// <summary>
 /// Add a line comment to this JSObject.
 /// </summary>
 /// <param name="line">The line to add as a line comment to this JSObject.</param>
 public void LineComment(string line)
 {
     SetCurrentState(State.LineComment);
     builder.LineComment(line);
 }
コード例 #2
0
ファイル: JSBlock.cs プロジェクト: vrdmr/autorest.typescript
 public void LineComment(string text)
 {
     SetCurrentState(State.Comment);
     builder.LineComment(text);
 }