About Convert.ToBase64String()
摘要:
在使用Convert.ToBase64String()对字符串进行Base64编码时,注意的几点: 例:string s = "Hello"; byte[] bytes = Convert.FromBase64String(s); 以上代码在运行时会抛出FormatException异常.提示为:Base-64字符数组的无效长度原因:当Convert.FromBase64... 阅读全文
posted @ 2004-02-10 16:58 afxucamd 阅读(4878) 评论(3) 推荐(0) 编辑