From 28c89f1a3b16eccce2e92ca90b35e9cb397c1d3b Mon Sep 17 00:00:00 2001 From: Michael Bond Date: Wed, 25 May 2022 08:39:25 -0400 Subject: [PATCH] Fix a typo --- languages/C#.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/C#.txt b/languages/C#.txt index b537983..abb9d65 100644 --- a/languages/C#.txt +++ b/languages/C#.txt @@ -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