Ich benutze C # schon ziemlich lange, habe aber Folgendes nie bemerkt: public static void Main() { for (int i = 0; i < 5; i++) { } int i = 4; //cannot declare as 'i' is declared in child scope int A = i; //cannot assign as 'i' does not exist in this context } Warum kann ich den Wert...