private static void Main(string[] args) { Console.WriteLine("Okay, going to compute the key. Have to remember to write it out at the end! I keep forgetting!"); string text = ""; byte[] array = Program.encrypted; for (int i = 0; i < array.Length; i++) { byte b = array[i]; text += Convert.ToChar((int)(b ^ 255)); } Console.ReadLine(); }