示例#1
0
文件: Program.cs 项目: Ratatui/OOTP
 static void Main(string[] args)
 {
     var client = new Client();
     client.Start();
     client.Send(null);
 }
示例#2
0
        static void Main(string[] args)
        {
            var client = new Client("http://localhost:8000?name=foo&password=bar", 8000);

            client.Start();
        }