Esempio n. 1
0
        /// <summary>
        /// The current number of items in the container.
        /// </summary>
        /// <returns>The item count.</returns>
        public int Count()
        {
            if (m_Buffer->allocatedIndexLength <= 0)
            {
                return(0);
            }

            return(UnsafeHashMapData.GetCount(m_Buffer));
        }