마이크로 소프트 사의 C# 컴파일러. 더 많은 정보: https://learn.microsoft.com/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe.
csc {{경로/입력파일_a.cs}} {{경로/입력파일_b.cs}}
csc /out:{{경로/파일명}} {{경로/입력파일.cs}}
csc /target:library {{경로/입력파일.cs}}
csc /reference:{{경로/라이브러리.dll}} {{경로/입력파일.cs}}
csc /resource:{{경로/리소스파일}} {{경로/입력파일.cs}}
csc /doc:{{경로/출력파일.xml}} {{경로/입력파일.cs}}
csc /win32icon:{{경로/아이콘.ico}} {{경로/입력파일.cs}}
csc /keyfile:{{경로/키파일}} {{경로/입력파일.cs}}