TLCS is a command line utility, which makes using top level csharp a whole lot easier.
Before using TLCS, you would need to type,
md TestProgramRepo
cd TestProgramRepo
dotnet new console
code Program.cs
dotnet run
And then you have another bloated repository on your system, even though all you need is top level C#.
Now all you have to type is,
echo. > Program.cs
code Program.cs
tlcs Program.cs
and everything is handled for you! No repo; no nonsense.
tlcs -t
to directly write C# into the terminaltlcs -s
to write a single-liner as an argumenttlcs -h
or tlcs help
to open the help menutlcs {FILE_NAME}
to run a .cs
filetlcs {FILE_NAME} {args}
if your C# file uses string[] args