프로그램/C# - Study
C# - Ex08 Client - Server (1ver)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Sockets; using System.Net; using System.IO; //TCP / IP 10/29 namespace Ex08Server { class Program { static void Main(string[] args) { //1. Create Socket Socket listener = new Socket( AddressFamily.InterNetwork, //ipv4 //SocketType.Dgram, ProtocolType.Udp//upd 사용 SocketType.Stream, ProtocolType...
2010. 10. 29. 10:44