it:programmiersprache:csharp:start

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
it:programmiersprache:csharp:start [12.08.2026 09:28] – angelegt marschit:programmiersprache:csharp:start [12.08.2026 10:39] (aktuell) marsch
Zeile 4: Zeile 4:
  
 Dokumentation zu Mono [[https://linuxvox.com/blog/mono-framework-linux/|Mono Framework on Linux: A Comprehensive Guide]] Dokumentation zu Mono [[https://linuxvox.com/blog/mono-framework-linux/|Mono Framework on Linux: A Comprehensive Guide]]
 +
 +Eine Projektvorlage erzeugen
 +<tabbox .DotNet>
 +<code bash>
 +# create a new console template
 +dotnet new console
 +</code>
 +<tabbox Mono>
 +
 +//nicht verfügbar//
 +
 +</tabbox>
 +
 +Ein C# Programm compilieren und laufen lassen
 +<tabbox .DotNet>
 +<code bash>
 +# build 'program.cs' (in current directory)
 +dotnet build --output ./build_output
 +
 +# execute 'program.dll'
 +dotnet ./build_output/program.dll
 +</code>
 +<tabbox Mono>
 +<code bash>
 +# build 'program.cs'
 +mcs program.cs
 +
 +# execute 'program.exe'
 +mono program.exe
 +</code>
 +</tabbox>
 +
  • it/programmiersprache/csharp/start.1786526934.txt.gz
  • Zuletzt geändert: 12.08.2026 09:28
  • von marsch