On 6/16/05, Clinton Post <clintonb_post@yahoo.com> wrote:
I am currently in programming classes where we use .net and I would like to use mono on Suse9.3. I have ensured that it was installed but I don't know how to open it.
What you mean to open it? mono is a runtime engine and class library. If you already has a program, compiled for mono, you execute it with: mono myprog.exe If you want to write and compile mono programs, you can either use any text editor to write the code, and the use the compiler (mcs) to compile it, or you can take a look at mono-develop - a mono port of CSharpDevelop open source IDE. I think there is a package in SuSE 9.3. Also, you can use eclipse with the appropriate addin for c#. For more information check mono site: http://mono-project.com/Main_Page mono-develop: http://monodevelop.org/ Cheers and happy coding Sunny