1: using System;
2: using System.Runtime.Remoting;
3:
4: public class Server
5: {
6: public static void Main(string[] Args)
7: {
8: RemotingConfiguration.Configure("Central.config");
9: Console.WriteLine("The host application is currently "+
10: "running. Press enter to exit.");
11: Console.ReadLine();
12: }
13: }
14: