blob: 7df4018ea45fb381c04e2f365f6bdb96b5493b91 [file] [log] [blame] [raw]
using System;
using System.Collections.Generic;
using System.Text;
using NVNC;
namespace VNCTest
{
class Program
{
static void Main(string[] args)
{
VncServer s = new VncServer("T!T@N", 5900, "T!T@N-VNC");
try
{
s.Start();
}
catch (ArgumentNullException ex)
{
Console.WriteLine(ex.Message);
return;
}
Console.ReadLine();
}
}
}