XText 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 XText 類別的新執行個體。
多載
XText(String) |
初始化 XText 類別的新執行個體。 |
XText(XText) |
XText(String)
- 來源:
- XText.cs
- 來源:
- XText.cs
- 來源:
- XText.cs
初始化 XText 類別的新執行個體。
public:
XText(System::String ^ value);
public XText (string value);
new System.Xml.Linq.XText : string -> System.Xml.Linq.XText
Public Sub New (value As String)
參數
範例
下列範例會建立包含文位元組點的專案。
XElement root = new XElement("Root", "Some text");
Console.WriteLine(root);
Dim root As XElement = <Root>Some text</Root>
Console.WriteLine(root)
這個範例會產生下列輸出:
<Root>Some text</Root>
備註
您通常不會使用 XText 建構函式來建立文位元組點。 當您在 XElement 建構 時傳遞文字內容時,會自動建立文位元組點。