2017/01 썸네일형 리스트형 비연결형 UDP 소켓 비연결형 UDP 소켓 (멀티캐스트) - 서버와 클라이언트를 나누어 작업 할 필요가 없다. - 프로그램이 켜진 모두가 동일한 코멘트를 받는다. 심지어 자기 자신도, /// /// superSc /// 2014.10.7 /// using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading; namespace UDPListerner.jsocket.udp { public class SNUdpSocket { public enum UdpStatus { Initialize, READY_TO_READ, END_.. 더보기 보다 심플한 C# 싱글턴 만들기 // simple type of c# singleton pattern public class Communicator { private static Communicator _inst; public static Communicator GetInst { get { return _inst; } } static Communicator() { _inst = new Communicator(); } private Communicator() { Console.WriteLine("NEW"); } } static 생성자를 통한 싱글턴 만들기. 더보기 개발을 해도 될 자 2016 블로그 결산 : http://www.tistory.com/thankyou/2016/tistory/682133 더보기 이전 1 다음