To Examples
Base64 Example, source code file Program.cs
using System; using System.Text; // Base64 Example. // Convert a string to binary and base 64. // Then reverse the process. namespace base64 { public class Program { public static void Main() { // Define original word. string word = "teal"; Console.WriteLine("Original word: " + word); // Convert to binary. byte[] binary = Encoding.ASCII.GetBytes(word.ToCharArray()); // Convert to base 64. string base64 = Convert.ToBase64String(binary); Console.WriteLine("Converted to Base 64: " + base64); // Convert back to binary. byte[] binary2 = Convert.FromBase64String(base64); // Convert back to characters. string word2 = Encoding.ASCII.GetString(binary2); Console.WriteLine("Converted back to characters: " + word2); Console.ReadLine(); } } }