רשומות בנושאי מחשבים ותכנות #C
UDP Client: void client_foo(){ string ip = "127.0.0.1"; int port = 8080; string input; UdpClient client = new UdpClient(); client.Connect(ip, port); byte[] data; while (true) { input = Console.ReadLine(); if (input == "exit") break; data = Encoding.ASCII.GetBytes(input); client.Send(data, data.Length); } }
אין תגובות:
הוסף רשומת תגובה