コード例 #1
0
		public static async Task Run (string endpointAddress, int port, bool isolated = true)
		{
			var server = new CSharpReplServer (endpointAddress, port, isolated);
			await server.Start ();
		}
コード例 #2
0
 public static void Run(string[] args)
 {
     var server = new CSharpReplServer(Int32.Parse(args[0]));
     server.Start();
 }