K2Informatics.Erlnet.GenericQueue.getCount C# (CSharp) Méthode

getCount() public méthode

public getCount ( ) : int
Résultat int
        public int getCount()
        {
            Monitor.Enter(this);
            try
            {
                return count;
            }
            finally
            {
                Monitor.Exit(this);
            }
        }