07 2016 档案
摘要:/// /// 文件转换为Base64二进制流 /// /// /// public static string FileToBase64(string FilePath) { FileStream fileStream = File.Open(FilePath, FileMode.OpenOrCreate); byte[] buffer = new byte[fileStrea...
阅读全文
摘要:public class PackIden { /// /// 根据身份证获取生日 /// /// 身份证 /// 是否有格式(true1990-01-01,false19900101) /// public static string GetBirthdayById...
阅读全文