žusing System.Runtime.Remoting;
žusing System.Runtime.Remoting.Channels;
žusing System.Runtime.Remoting.Channels.Tcp;
ž
žnamespace RemHost
ž{
ž    class Program
ž    {
ž        static void Main(string[] args)
ž        {
ž            RemotingConfiguration.Configure("RemHost.exe.config", false);
ž
ž            Console.WriteLine("Server started!\r\nPress Enter to stop.");
ž            Console.ReadLine();
ž        }
ž    }
ž}