public bool MoveNext()
 {
     STORE_CATEGORY_SUBCATEGORY[] rgElements = new STORE_CATEGORY_SUBCATEGORY[1];
     uint num = this._enum.Next(1, rgElements);
     if (num == 1)
     {
         this._current = rgElements[0];
     }
     return (this._fValid = num == 1);
 }
Exemple #2
0
        public bool MoveNext()
        {
            STORE_CATEGORY_SUBCATEGORY[] rgElements = new STORE_CATEGORY_SUBCATEGORY[1];
            uint num = this._enum.Next(1U, rgElements);

            if ((int)num == 1)
            {
                this._current = rgElements[0];
            }
            return(this._fValid = (int)num == 1);
        }
Exemple #3
0
        public bool MoveNext()
        {
            STORE_CATEGORY_SUBCATEGORY[] array = new STORE_CATEGORY_SUBCATEGORY[1];
            uint num = this._enum.Next(1U, array);

            if (num == 1U)
            {
                this._current = array[0];
            }
            return(this._fValid = (num == 1U));
        }
 public bool MoveNext()
 {
     STORE_CATEGORY_SUBCATEGORY[] next = new STORE_CATEGORY_SUBCATEGORY[1];
     UInt32 fetched;
     fetched=_enum.Next(1, next);
     if (fetched == 1)
         _current = next[0];
     return (_fValid = (fetched == 1));
 }