public static void Main()
char[, ] encrypter = new char[6, 6];
Char[] messageToEncrypt = "This is a test".ToCharArray();
bool message_finished = false;
for (int c = 0; c < 6; c++)
for (int r = 0; r < 6; r++)
encrypter[r, c] = messageToEncrypt[count];
if (count >= messageToEncrypt.Length) {
for (int i = 0; i < encrypter.GetLength(0); i++)
for (int j = 0; j < encrypter.GetLength(1); j++)
Console.Write(encrypter[i,j] + "\t");