Fix a typo

This commit is contained in:
Michael Bond 2022-05-25 08:39:25 -04:00 committed by GitHub
parent 2137ac0559
commit 28c89f1a3b
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