01 2015 档案
摘要:IText构造PDF文件1.1 生成DocumentDocument是我们要生成的PDF文件所有元素的容器,因此要生成一个PDF文档,必须首先定义一个Document对象。 Document有三种构造函数: public Document(); public Document(Rectangle...
阅读全文
摘要:http://blog.csdn.net/zhumi/article/details/49076用于编写单元测试的 NUnit用于创建代码文档资料的 NDoc用于生成解决方案的 NAnt用于生成代码的 CodeSmith用于监视代码的 FxCop用于编译少量代码的 Snippet Compiler用...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;//注意添加该反射的命名空间 using System.Reflection;...
阅读全文
摘要:public class CDisposable : IDisposable { //析构函数,编译后变成 protected void Finalize(),GC会在回收对象前会调用调用该方法 ~CDisposable() ...
阅读全文