コード例 #1
0
        public new IHashMapList GetRange(int index, int count)
        {
            System.Collections.Generic.List <IHashMap> range = base.GetRange(index, count);
            IHashMapList hashObjectList = new HashMapList(count);

            foreach (IHashMap current in range)
            {
                hashObjectList.Add(current);
            }
            return(hashObjectList);
        }