共用方式為


HOW TO:建置 LINQ to XML 範例

此文件中的各種片段與範例使用各種命名空間中的類別和型別。 編譯 C# 程式碼時,您必須提供適當的 using 指示詞。 編譯 Visual Basic 程式碼時,您必須提供適當的 Imports 陳述式。

範例

下列程式碼包含 C# 範例建置與執行所需的 using 指示詞。 並非每個範例都需要使用所有 using 指示詞。

using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Linq;
using System.Xml;
using System.Xml.Linq;
using System.Xml.Schema;
using System.Xml.XPath;
using System.Xml.Xsl;
using System.IO;
using System.Threading;
using System.Reflection;
using System.IO.Packaging;

下列程式碼包含 Visual Basic 範例建置與執行所需的 Imports 陳述式。 並非每個範例都需要使用所有 Imports 陳述式。

Imports System
Imports System.Diagnostics
Imports System.Collections
Imports System.Collections.Generic
Imports System.Collections.Specialized
Imports System.Text
Imports System.Linq
Imports System.Xml
Imports System.Xml.Linq
Imports System.Xml.Schema
Imports System.Xml.XPath
Imports System.Xml.Xsl
Imports System.IO
Imports System.Threading
Imports System.Reflection
Imports System.IO.Packaging

請參閱

概念

LINQ to XML 程式設計概觀