Axiom.SceneManagers.Bsp.Collections.Map.Count C# (CSharp) Method

Count() public method

Gets the count of objects mapped to the specified key.
public Count ( object key ) : int
key object
return int
        public int Count( object key )
        {
            if ( buckets[ key ] != null )
            {
                return ( (ArrayList)buckets[ key ] ).Count;
            }

            return 0;
        }