Created
May 1, 2018 15:28
-
-
Save pdubb29/cfe4f17c0f3861b06ee68eb846e82f74 to your computer and use it in GitHub Desktop.
Convert a base 64 string to a string value.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mystring = ""; //insert string here. | |
var encodedBytes = System.Convert.FromBase64String(mystring); | |
var theString = System.Text.Encoding.UTF8.GetString(encodedBytes); | |
Console.WriteLine(theString); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment