XComment Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe XComment.
Surcharges
XComment(String) |
Initialise une nouvelle instance de la classe XComment avec le contenu de chaîne spécifié. |
XComment(XComment) |
Initialise une nouvelle instance de la classe XComment à partir d'un nœud de commentaire existant. |
XComment(String)
Initialise une nouvelle instance de la classe XComment avec le contenu de chaîne spécifié.
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)
Paramètres
Exceptions
Le paramètre value
a la valeur null
.
Exemples
L’exemple suivant crée un élément qui contient un commentaire en tant que nœud enfant.
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)
Cet exemple produit la sortie suivante :
<Root>
<!--This is a comment-->
</Root>
Voir aussi
S’applique à
XComment(XComment)
Initialise une nouvelle instance de la classe XComment à partir d'un nœud de commentaire existant.
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)
Paramètres
Exceptions
Le paramètre other
a la valeur null
.
Remarques
Ce constructeur est principalement utilisé en interne pour effectuer une copie approfondie d’une arborescence XML.