Permalink
5 lines (5 sloc)
227 Bytes
|
string base64Decoded = "base64 encoded string"; |
|
string base64Encoded; |
|
byte[] data = System.Text.ASCIIEncoding.ASCII.GetBytes(base64Decoded); |
|
base64Encoded = System.Convert.ToBase64String(data); |
|
Console.WriteLine(base64Encoded) |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.