摘要: 封装了一个对称加解密的类,用私钥和密钥加解密using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Security.Cryptography;namespace CMD... 阅读全文
posted @ 2014-04-18 00:33 如.若 阅读(2116) 评论(0) 推荐(0)
摘要: Millennials 是一个可定制的 C# 代码生成工具,支持 MVC 和三层架构、ADO.NET、Nhibernate 和 LINQ。项目主页:http://www.open-open.com/lib/view/home/1341644211026 阅读全文
posted @ 2014-04-18 00:29 如.若 阅读(599) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Text;namespace Tools.Common{ /// /// 数据优化公共类 /// public static class DataHe... 阅读全文
posted @ 2014-04-18 00:26 如.若 阅读(701) 评论(0) 推荐(0)
摘要: 反射的定义:审查元数据并收集关于它的类型信息的能力。元数据(编译以后的最基本数据单元)就是一大堆的表,当编译程序集或者模块时,编译器会创建一个类定义表,一个字段定义表,和一个方法定义表等。 System.reflection命名空间包含的几个类,允许你反射(解析)这些元数据表的代码,如下所示:Sys... 阅读全文
posted @ 2014-04-18 00:23 如.若 阅读(533) 评论(0) 推荐(0)
摘要: 参考了网上一些代码,作了一些调整优化。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.IO;public class FTP... 阅读全文
posted @ 2014-04-18 00:12 如.若 阅读(919) 评论(0) 推荐(0)
摘要: Regex类实现了一些特殊功能数据检查,正则表达式的一些常用的功能,集成至该类中。public class RegexDao { private RegexDao() { } private static RegexDao instance = null; ... 阅读全文
posted @ 2014-04-18 00:05 如.若 阅读(735) 评论(0) 推荐(0)