public static string Base64DecodingMethod(string sData) { byte[] encData = System.Convert.FromBase64String(sData); string result = System.Text.ASCIIEncoding.ASCII.GetString(encData); return result; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)