Die Datei enthält kein gültiges CIL-Bild.

28259
roykasa

Hey Jungs, ich habe Mono auf meiner Suse 12.1 installiert. Wenn ich eine Datei sage, sage "hello.cs" und starte "$ mono hello.cs" auf dem Terminal, bekomme ich diese Fehlermeldung:

Assembly "hello.cs" kann nicht geöffnet werden: Die Datei enthält kein gültiges CIL-Image.

Der Inhalt der Datei (hello.cs) ist wie folgt

class hello{ static void main (){ System.Console.WriteLine("Hello World"); } } 

Was könnte das Problem sein und wie löse ich es?

7

1 Antwort auf die Frage

8
jaume

The mono command is used to run compiled C# programs. You need to compile hello.cs first with:

mcs hello.cs 

Then you can execute it with:

mono hello.exe 

For more information on writing C# programs with Mono see: http://www.codeproject.com/Articles/9407/Introduction-to-Mono-Your-first-Mono-app

ja es funktioniert jetzt. Vielen Dank roykasa vor 12 Jahren 0