[Mono-list] Console base applications
Jonathan Pryor
jonpryor@vt.edu
17 Jun 2003 10:55:33 -0400
On Tue, 2003-06-17 at 07:26, Joeri Belis wrote:
> Is it possible to develop in C# console application on linux.
Yes. Very simple ones. Printf() and scanf() style ones. :-)
> Is there a ncurses type library?
No. I imagine it would be straightforward to write a C# DllImport
wrapper for ncurses, but I'm not aware of any existing projects that do
this.
> Are there already C# console projects that i can take a look at?
Well, mcs sends output to the console...as do most of the executables
installed by mono (cilc, ilasm, etc.). However, I suspect you don't
mean this type of console program, as these just send output to the
console (like ls, cat, and most Unix console programs).
> Joeri
- Jon