示例#1
0
文件: Program.cs 项目: stweily/Encore
 private static void Main()
 {
     using (ActorContext.Global)
     {
         Console.WriteLine("Welcome to the Encore ReverserTool. Type '?' for help.");
         CommandConsole.Run();
     }
 }
示例#2
0
文件: Program.cs 项目: stweily/Encore
 private static void Main(string[] args)
 {
     using (ActorContext.Global)
     {
         AuthenticationApplication.Instance.Start(args);
         CommandConsole.Run();
         AuthenticationApplication.Instance.Stop();
     }
 }