C#: Base64 Encode a String
C# code to encode a string to its equivalent string representation that is encoded with base-64 digits.
private string EncodeBase64(string s)
{
try
{
byte[] ascBytes = System.Text.ASCIIEncoding.ASCII.GetBytes(s);
return System.Convert.ToBase64String(ascBytes);
}
catch (Exception e) { throw new Exception(e.Message); }
}