First find a compiler (translator: "csc.exe") to run windowsforms.
- start command prompt (cmd)
- where /r c:\ csc.exe

" where /r c:\ csc.exe" where command to find csc.exe from the c\ drive
*Find the machine language translator with this command. csc.exe is present by default without downloading
3 Compile when you find it
3.1 Move cmd to the program location

// In this case, create a test folder in C:\ and put the cs. file there.
Translate without console output with "path found with where command" and "/t:winexe(/target:winexe) command
You can also specify the path directly.
c:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /t:winexe 01.cs
"c:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe" pass
"/t:winexe" command
"01.cs" program-name


