CodeComment 构造函数

定义

初始化 CodeComment 类的新实例。

重载

CodeComment()

初始化 CodeComment 类的新实例。

CodeComment(String)

使用指定的文本作为内容来初始化 CodeComment 类的新实例。

CodeComment(String, Boolean)

使用指定的文本和文档注释标志初始化 CodeComment 类的新实例。

CodeComment()

Source:
CodeComment.cs
Source:
CodeComment.cs
Source:
CodeComment.cs

初始化 CodeComment 类的新实例。

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

适用于

CodeComment(String)

Source:
CodeComment.cs
Source:
CodeComment.cs
Source:
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)

Source:
CodeComment.cs
Source:
CodeComment.cs
Source:
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

适用于