IRC Info

irc

Server: irc.dab.biz port: 6667 (SSL 6697)

/j #shellmix

Hypeshell.com

New shell server
 
 
The new server is like shellmix, but to register you have to pay 5 Euro. You only pay once. This is the only way to stop idiots and spammers.
Server features :

- Two Intel i7 CPU 2600K

- 16 GB DDR3

- Four HDD SATA3

- Separate Environment between user class

- Many IP

 - And everything looks like shellmix : )

 



Search

Comments Latest

  • Hi getting a "Server unexpectedly closed network c...
  • Great server, but tunnel is not working... :|
  • Looks like whoever installed putty on the computer...
  • Can't log into the ssh server to create a new acco...
  • I would like to help resolve this issue.

Advertising

Advertising

Mono

Attention: open in a new window. Print

Mono Basics

After you get Mono installed, it's probably a good idea to run a quick Hello World program to make sure everything is set up properly. That way you'll know that your Mono is working before you try writing or running a more complex application.


Console Hello World

To test the most basic functionality available, copy the following code into a file called hello.cs.

using System;
 
public class HelloWorld
{
	static public void Main ()
	{
		Console.WriteLine ("Hello Mono World");
	}
 
}

To compile, use gmcs:

gmcs hello.cs

Either compiler will create "hello.exe", which you can run using:

mono hello.exe

The program should run and output:

Hello Mono World

Gtk# Hello World

The following program tests writing a Gtk# application.

using Gtk;
using System;
 
class Hello {
 
        static void Main()
        {
                Application.Init ();
 
                Window window = new Window ("helloworld");
                window.Show();
    
                Application.Run ();
    
        }
}

To compile, use gmcs with the -pkg option to tell the compiler to pull in the Gtk# libraries:

gmcs hello.cs -pkg:gtk-sharp-2.0

The compiler will create "hello.exe", which you can run using:

mono hello.exe

Winforms Hello World

The following program tests writing a Winforms application.

using System;
using System.Windows.Forms;
 
public class HelloWorld : Form
{
	static public void Main ()
	{
		Application.Run (new HelloWorld ());
	}
 
	public HelloWorld ()
	{
		Text = "Hello Mono World";
	}
}

To compile, use gmcs with the -pkg option to tell the compiler to pull in the Winforms libraries:

gmcs hello.cs -pkg:dotnet

Either compiler will create "hello.exe", which you can run using:

mono hello.exe

 

Advertising 3

Donate

Donate to keep shellmix alive


PayPal


Info BOX

Vote on shellmix !!!!

Free Shell Accounts - the biggest list on the net :-)

Who's Online

We have 730 guests online

FaceShit info page if server is down 

name=