public static void Main()
Console.WriteLine("Encryption App");
Console.WriteLine(new String('-', 50));
Console.WriteLine("Please enter in your secret message");
string message = Console.ReadLine();
Console.WriteLine("The Encrypted Message Is: ");
for (int H = 0; H < message.Length; H++)
character = message.Substring(H, 1);
asciValue = char.ConvertToUtf32(character, 0);
if (asciValue >= 65 && asciValue <= 87)
Nc += char.ConvertFromUtf32(asciValue + 3);
else if (asciValue >= 97 && asciValue <= 119)
Nc += char.ConvertFromUtf32(asciValue + 3);
else if (asciValue >= 88 && asciValue <= 90 || asciValue >= 120 && asciValue <= 122)
Nc += char.ConvertFromUtf32(asciValue - 23);