XComment.Value 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置此注释的字符串值。
public:
property System::String ^ Value { System::String ^ get(); void set(System::String ^ value); };
public string Value { get; set; }
member this.Value : string with get, set
Public Property Value As String
属性值
一个 String,其中包含此注释的字符串值。
例外
value
为 null
。
示例
以下示例创建注释节点。 然后,它会检索注释节点的内容。
XComment com = new XComment("This is a comment");
Console.WriteLine(com.Value);
Dim com As XComment = New XComment("This is a comment")
Console.WriteLine(com.Value)
该示例产生下面的输出:
This is a comment
注解
与 和 XAttribute不同XElement,不能通过将注释转换为字符串来检索注释的内容。 相反,必须使用此属性来检索内容。
设置此属性将引发 Changed 和 Changing 事件。