K2Informatics.Erlnet.GenericQueue.getCount C# (CSharp) Метод

getCount() публичный Метод

public getCount ( ) : int
Результат int
        public int getCount()
        {
            Monitor.Enter(this);
            try
            {
                return count;
            }
            finally
            {
                Monitor.Exit(this);
            }
        }