摘要:
DataTable public static class DataTableExtension { public static T GetData<T>(this DataTable dt, int rowIndex, string colName) { if (dt == null || dt. 阅读全文
摘要:
AES 算法加密(ECB模式),加密后进行base64编码 异常 Specified key is not a valid size for this algorithm 解决方法:AES加密中参数key应是32位,如果位数不对会报此错。 /// <summary> /// AES 算法加密(ECB 阅读全文