# 方法
# FromBase64String(String)
将指定的字符串(它将二进制数据编码为 Base64 数字)转换为等效的 8 位无符号整数数组
| public static byte[] FromBase64String (string s); |
示例:使用 `ToBase64String(Byte)` 此方法将字节数组转换为 UUencoded (base-64) 字符串,然后调用 `FromBase64String(String)` 该方法来还原原始字节数组
| class Program |
| { |
| static void Main(string[] args) |
| { |
| byte[] bytes = { 2, 4, 6, 8, 10, 12 }; |
| Console.WriteLine($"原始字节数组:{BitConverter.ToString(bytes)}"); |
| |
| string s = Convert.ToBase64String(bytes); |
| Console.WriteLine($"字节数组转换成base64字符串:{s}"); |
| |
| byte[] newBytes = Convert.FromBase64String(s); |
| Console.WriteLine($"还原原始字节数组:{BitConverter.ToString(newBytes)}"); |
| } |
| } |
| |
| |
| |
| |
| |