Merge pull request #286 from codemonkey85/patch-1

Fix a typo
This commit is contained in:
Julien Le Coupanec 2022-07-06 11:10:33 +02:00 committed by GitHub
commit 936500c032
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ CHEATSHEET C#
8. C# compiler at the Command Line
csc File.cs -> Compiles Files.cs producing File.exe
csc File.cs -> Compiles File.cs producing File.exe
csc -target:library File.cs -> Compiles File.cs producing File.dll
csc -out:My.exe File.cs -> Compiles File.cs and creates My.exe
csc -define:DEBUG -optimize -out:File2.exe *.cs -> Compiles all the C# files in the current directory with optimizations enabled and defines the DEBUG symbol. The output is File2.exe