CodeComment 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 CodeComment 類別的新實例。
多載
CodeComment() |
初始化 CodeComment 類別的新實例。 |
CodeComment(String) |
使用指定的文字做為內容,初始化 CodeComment 類別的新實例。 |
CodeComment(String, Boolean) |
使用指定的文字和檔批註旗標,初始化 CodeComment 類別的新實例。 |
CodeComment()
CodeComment(String)
使用指定的文字做為內容,初始化 CodeComment 類別的新實例。
public:
CodeComment(System::String ^ text);
public CodeComment (string text);
new System.CodeDom.CodeComment : string -> System.CodeDom.CodeComment
Public Sub New (text As String)
參數
- text
- String
批注的內容。
適用於
CodeComment(String, Boolean)
使用指定的文字和檔批註旗標,初始化 CodeComment 類別的新實例。
public:
CodeComment(System::String ^ text, bool docComment);
public CodeComment (string text, bool docComment);
new System.CodeDom.CodeComment : string * bool -> System.CodeDom.CodeComment
Public Sub New (text As String, docComment As Boolean)
參數
- text
- String
批注的內容。
- docComment
- Boolean
如果批注是檔批注,true
;否則,false
。