// // // // // $Revision: 915 $ // using System; using System.Collections.Generic; using System.Runtime.Remoting; using System.Threading; namespace CustomSinks { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Thread.CurrentThread.Name = "Server (STA)"; RemotingConfiguration.Configure("Server.exe.config"); Console.WriteLine("Chat server started. Press ENTER to exit."); Console.ReadLine(); } } }