XComment 构造函数

定义

初始化 XComment 类的新实例。

重载

XComment(String)

使用指定的字符串内容初始化 XComment 类的新实例。

XComment(XComment)

从现有注释节点初始化 XComment 类的新实例。

XComment(String)

使用指定的字符串内容初始化 XComment 类的新实例。

public:
 XComment(System::String ^ value);
public XComment (string value);
new System.Xml.Linq.XComment : string -> System.Xml.Linq.XComment
Public Sub New (value As String)

参数

value
String

一个字符串,其中包含新 XComment 对象的内容。

例外

value 参数为 null

示例

以下示例创建一个元素,该元素包含作为子节点的注释。

XElement root = new XElement("Root",  
    new XComment("This is a comment")  
);  
Console.WriteLine(root);  
Dim root As XElement = <Root>  
                           <!--This is a comment-->  
                       </Root>  
Console.WriteLine(root)  

该示例产生下面的输出:

<Root>  
  <!--This is a comment-->  
</Root>  

另请参阅

适用于

XComment(XComment)

从现有注释节点初始化 XComment 类的新实例。

public:
 XComment(System::Xml::Linq::XComment ^ other);
public XComment (System.Xml.Linq.XComment other);
new System.Xml.Linq.XComment : System.Xml.Linq.XComment -> System.Xml.Linq.XComment
Public Sub New (other As XComment)

参数

other
XComment

要从其复制的 XComment 节点。

例外

other 参数为 null

注解

此构造函数主要用于内部生成 XML 树的深层副本。

另请参阅

适用于