public static void Main()
string AktuellerBuchstabe;
int[] AsciiListe = new int[100];
Console.WriteLine("Der eingegebene Text ist: " + Eingabewort);
Console.WriteLine("Die ASCII Codes lauten: ");
WortLaenge=Eingabewort.Length;
for(j=0;j<WortLaenge;j++)
AktuellerBuchstabe=Eingabewort.Substring(j,1);
AktuellerAsciiCode= (char.ConvertToUtf32(AktuellerBuchstabe,0));
Console.WriteLine(AktuellerBuchstabe);
AsciiListe[j] = AktuellerAsciiCode;
for (j=0;j<WortLaenge;j++)
for(k=WortLaenge-1;k>j;k--)
AsciiListe[k] = AsciiListe[k-1];
for(k=WortLaenge-1;k>j;k--)
AsciiListe[k] = AsciiListe[k-1] ;
for (j=0;j<WortLaenge;j++)
if((AsciiListe[j] > 96) & (AsciiListe[j] < 123))
for (j=0;j<WortLaenge;j++)
Console.WriteLine(AsciiListe[j]);
for (j=0;j<WortLaenge;j++)
Console.WriteLine(char.ConvertFromUtf32(AsciiListe[j]));
for (j=0;j<WortLaenge;j++)
Ausgabewort += char.ConvertFromUtf32(AsciiListe[j]);
Console.WriteLine("Das verschlüsselte Wort lautet: " + Ausgabewort);