Hi,
today I evaluated how easy it is to compile code in the command line and wanted to compare it to C# interactive window.
This is my generic script to compile
today I evaluated how easy it is to compile code in the command line and wanted to compare it to C# interactive window.
This is my generic script to compile
@echo off
C:\Windows\Microsoft.NET\ Framework64\v4.0.30319\csc.exe /t:exe /out:output.exe *.cs >nul 2>nul
.\output.exe
del output.exe
pause;
Consider, I need a fully blows c# file to write hello world to the console:
Something like
// A Hello World! program in C#. using System; namespace HelloWorld { class Hello { static void Main() { Console.WriteLine("Hello World!"); // Keep the console window open in debug mode. Console.WriteLine("Press any key to exit."); Console.ReadKey(); } } }
(see: https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/hello-world-your-first-program )
This is a bit much in comparison to (started in developer command prompt):
command: csi csitest.csx
content: Console.WriteLine("Hello World!");
We definitely have a winner here...
kr,
Daniel