XComment Constructor (String)
Collapse the table of content
Expand the table of content

XComment Constructor (String)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new instance of the XComment class with the specified string content.

Namespace:  System.Xml.Linq
Assembly:  System.Xml.Linq (in System.Xml.Linq.dll)

'Declaration
Public Sub New ( _
	value As String _
)

Parameters

value
Type: System.String
A string that contains the contents of the new XComment object.

ExceptionCondition
ArgumentNullException

The value parameter is Nothing.

The following example creates an element that contains a comment as a child node.


Dim output As New StringBuilder
Dim root As XElement = <Root>
                           <!--This is a comment-->
                       </Root>
output.Append(root)
output.Append(Environment.NewLine)

OutputTextBlock.Text = output.ToString()


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft