Udostępnij za pośrednictwem


CodeComment Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy CodeComment.

Przeciążenia

CodeComment()

Inicjuje nowe wystąpienie klasy CodeComment.

CodeComment(String)

Inicjuje CodeComment nowe wystąpienie klasy z określonym tekstem jako zawartością.

CodeComment(String, Boolean)

Inicjuje CodeComment nowe wystąpienie klasy przy użyciu określonego tekstu i flagi komentarza dokumentacji.

CodeComment()

Źródło:
CodeComment.cs
Źródło:
CodeComment.cs
Źródło:
CodeComment.cs

Inicjuje nowe wystąpienie klasy CodeComment.

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

Dotyczy

CodeComment(String)

Źródło:
CodeComment.cs
Źródło:
CodeComment.cs
Źródło:
CodeComment.cs

Inicjuje CodeComment nowe wystąpienie klasy z określonym tekstem jako zawartością.

public:
 CodeComment(System::String ^ text);
public CodeComment (string text);
new System.CodeDom.CodeComment : string -> System.CodeDom.CodeComment
Public Sub New (text As String)

Parametry

text
String

Zawartość komentarza.

Dotyczy

CodeComment(String, Boolean)

Źródło:
CodeComment.cs
Źródło:
CodeComment.cs
Źródło:
CodeComment.cs

Inicjuje CodeComment nowe wystąpienie klasy przy użyciu określonego tekstu i flagi komentarza dokumentacji.

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)

Parametry

text
String

Zawartość komentarza.

docComment
Boolean

true jeśli komentarz jest komentarzem do dokumentacji; w przeciwnym razie , false.

Dotyczy