共用方式為


CodeComment 建構函式

定義

初始化 CodeComment 類別的新實例。

多載

CodeComment()

初始化 CodeComment 類別的新實例。

CodeComment(String)

使用指定的文字做為內容,初始化 CodeComment 類別的新實例。

CodeComment(String, Boolean)

使用指定的文字和檔批註旗標,初始化 CodeComment 類別的新實例。

CodeComment()

來源:
CodeComment.cs
來源:
CodeComment.cs
來源:
CodeComment.cs
來源:
CodeComment.cs

初始化 CodeComment 類別的新實例。

public:
 CodeComment();
public CodeComment ();
Public Sub New ()

適用於

CodeComment(String)

來源:
CodeComment.cs
來源:
CodeComment.cs
來源:
CodeComment.cs
來源:
CodeComment.cs

使用指定的文字做為內容,初始化 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.cs
來源:
CodeComment.cs
來源:
CodeComment.cs
來源:
CodeComment.cs

使用指定的文字和檔批註旗標,初始化 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

適用於