Answers for "base64 decode how used in c#"

C#
0

base64 decode how used in c#

public static string Base64Encode(string plainText) {
  var plainTextBytes = System.Text.Encoding.UTF8.GetBytes(plainText);
  return System.Convert.ToBase64String(plainTextBytes);
}
Posted by: Guest on February-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language