CodeComment 构造函数

定义

初始化 CodeComment 类的新实例。

重载

CodeComment()

初始化 CodeComment 类的新实例。

CodeComment(String)

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

CodeComment(String, Boolean)

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

CodeComment()

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

适用于