1. 程式人生 > >轉 c#中 base64字串與普通字串互轉

轉 c#中 base64字串與普通字串互轉

https://blog.csdn.net/hwt0101/article/details/79758912

轉成 Base64 形式的 System.String:
    string a = "base64字串與普通字串互轉";  
    byte[] b = System.Text.Encoding.Default.GetBytes(a);      
    //轉成 Base64 形式的 System.String  
    a = Convert.ToBase64String(b);  
    Response.Write(a);  
 
轉回到原來的 System.String:


    byte[] c = Convert.FromBase64String(a);  
    a = System.Text.Encoding.Default.GetString(c);  
    Response.Write(a);

 

 內容來源網上

https://www.cnblogs.com/xskblog/p/6179689.html