예제 #1
0
파일: Packet.cs 프로젝트: mgrabina/tav1
        public static Packet Obtain()
        {
            Packet packet = null;

            lock (poolLock) {
                packet = pool.Obtain();
            }
            return(packet);
        }