摘要: /// /// 文件转换为Base64二进制流 /// /// /// public static string FileToBase64(string FilePath) { FileStream fileStream = File.Open(FilePath, FileMode.OpenOrCreate); byte[] buffer = new byte[fileStrea... 阅读全文
posted @ 2016-07-20 14:06 有思想的码农 阅读(12266) 评论(0) 推荐(2) 编辑
摘要: public class PackIden { /// /// 根据身份证获取生日 /// /// 身份证 /// 是否有格式(true1990-01-01,false19900101) /// public static string GetBirthdayById... 阅读全文
posted @ 2016-07-20 10:05 有思想的码农 阅读(4077) 评论(1) 推荐(0) 编辑
摘要: 身份证验证 阅读全文
posted @ 2016-07-20 09:13 有思想的码农 阅读(238) 评论(0) 推荐(0) 编辑