JirkaDellOro / Softwaredesign

Modul "Softwaredesign": Lektionen und Übungsaufgaben
12 stars 12 forks source link

NullReferenceException #6

Closed katharinaeisenhardt closed 6 years ago

katharinaeisenhardt commented 6 years ago

Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. at FinaleAbgabe.GameData.CreateCharacters() in C:\Users\Katharina\Desktop\Softwaredesign\SoftwareDesign\FinaleAbgabe\GameData.cs:line 157

Dieser Buildfehler wird ständig angezeigt, obwohl in dieser Zeile ein neues Objekt vom Typ Avatar erstellt wird: public static void CreateCharacters() { Avatar ForestGodess = new Avatar //Zeile 157 ( "Godess of the forest", 1F, 0.2F, "I'm the Godess of the forest. I'm your Avatar. Our Mission is to free the forest spirits from the tyrannic Deathking!", rooms["Silent Glade"] ); }

JirkaDellOro commented 6 years ago

Es ist kein Compilezeitfehler, sondern ein Laufzeitfehler. rooms ist noch nicht definiert, wenn ihr versucht die Charaktere zu bauen.