如何:生成 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