PBCaGw.DataPacket.ShowPools C# (CSharp) Method

ShowPools() public static method

public static ShowPools ( ) : void
return void
        public static void ShowPools()
        {
            lock (storedPackets)
            {
                foreach (var i in storedPackets.OrderBy(row => row.Key))
                {
                    Console.WriteLine("" + i.Key + ": " + i.Value.Count);
                }
            }
        }