Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.
public static string ToBase64String( byte[] inArray )
inArray - An array of 8-bit unsigned integers.
A Base64-encoded string representation of inArray.
string base64Decoded = "I will comeback soon";
byte[] data = System.Text.ASCIIEncoding.ASCII.GetBytes(base64Decoded);
string base64Encoded = System.Convert.ToBase64String(data);
Home Page Base64encode List Privacy Policy About Us Contact
This website uses cookies to enhance your experience, personalize content and ads, and analyze our traffic.
©2025 Design by base64encodeonl.com