我是靠谱客的博主 笑点低柠檬,这篇文章主要介绍C# Base 64 编码/解码实现代码,现在分享给大家,希望可以做个参考。

1、base64 to string

   string strPath = "aHR0cDovLzIwMy44MS4yOS40Njo1NTU3L1
 9iYWlkdS9yaW5ncy9taWRpLzIwMDA3MzgwLTE2Lm1pZA==";     
   byte[] bpath = Convert.FromBase64String(strPath);
   strPath = System.Text.ASCIIEncoding.Default.GetString(bpath);

2、string to base64

System.Text.Encoding encode = System.Text.Encoding.ASCII ;
byte[] bytedata = encode.GetBytes( "test");
string strPath = Convert.ToBase64String(bytedata,0,bytedata.Length);

最后

以上就是笑点低柠檬最近收集整理的关于C# Base 64 编码/解码实现代码的全部内容,更多相关C#内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(177)

评论列表共有 0 条评论

立即
投稿
返回
顶部