示例#1
0
        public static int Main(String[] args)
        {
            Console.WriteLine("Please enter the IP Address of the server");
            Client client = new Client("192.168.1.132");

            while (true)
            {
                Console.WriteLine("Enter JSON: ");
                client.StartClient(Console.ReadLine());
            }
        }