Csharp/C Sharp/XML LINQ/XText — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 15:31, 26 мая 2010

Creating a Text Node and Passing It As the Value of a Created Element

 

using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Xml;
using System.Xml.Linq;
public class MainClass {
    public static void Main() {
        XText xName = new XText("Joe");
        XElement xFirstName = new XElement("FirstName", xName);
        Console.WriteLine(xFirstName);
    }
}