随笔分类 - 01.NET基础
01.NET基础
摘要:1、LINQ to XML类以下的代码演示了如何使用LINQ to XML来快速创建一个xml:隐藏行号复制代码?创建 XMLpublic static void CreateDocument(){ string path = @"d:\website"; XDocument xdoc = new XDocument(new XDeclaration("1.0", "utf-8", "yes"), new XElement("Root", "root")); xdoc.Sav
阅读全文
摘要:iTextSharp is a library that allows you to generate PDF files on the fly. Report.NET is a powerful library that will help you to generate PDF document
阅读全文