By tag: Console
0
kicks
NConsoler - command line parser library for .NET
Command line parser based on meta information.
0
kicks
A Console in Managed DirectX
A console (similar to cmd.exe or command.com) written in C# using .NET Framework 3.5 and Managed DirectX, and packaged as a library.
0
kicks
A Timer class for C# Console Applications
System.Windows.Forms.Timer does not work for Console Applications because you need an event loop, so you need to use System.Threading to implement your own timer with an event loop, here is how...
0
kicks
Process management (in C#) for the command line
I came across this cool little tool the other day. It's called pList. It is a process management tool for the command line done in C#. Nothing to fancy, but pretty usefull. He said he is going to add remoting to it if someone requests it. Anway, kind of cool, worth checking out.
0
kicks
Stop Console Applications From Closing Immediately
When you develop your first console application, it can be a surprise when you execute your application in debug mode and find that the console closes before you have time to see the results.
0
kicks
Reading Masked Input from the System Console with .NET 2.0
Reading masked input from the system console using .NET 2.0's updated Console APIs.