摘要: 在深入进行.Net框架下的XML文档的操作之前,我想很有必要向大家介绍.Net框架中与XML技术有关的命名空间和其中一些重要的类。.Net 框架为我们提供了以下一些命名空间:System.Xml、System.Xml.Schema、System.Xml.Serialization、 System.Xml.Xpath以及 System.Xml.Xsl来包容和XML操作相关的类。 ◆System.... 阅读全文
posted @ 2009-04-03 16:32 小贱 阅读(362) 评论(0) 推荐(0) 编辑
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Xml; using S... 阅读全文
posted @ 2009-04-03 15:01 小贱 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 使用csc命令将.cs文件编译成.dll的过程 很多时候,我们需要将.cs文件单独编译成.dll文件, 操作如下: 打开命令窗口->输入cmd到控制台->cd C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 转到vs.net安装的该目录下->执行csc命令csc /target:library File.cs->在该目录下产生一个对应名字的.dll文件(... 阅读全文
posted @ 2009-04-03 13:28 小贱 阅读(500) 评论(0) 推荐(0) 编辑