public bool MoveNext()
 {
     STORE_ASSEMBLY_FILE[] rgelt = new STORE_ASSEMBLY_FILE[1];
     uint num = this._enum.Next(1, rgelt);
     if (num == 1)
     {
         this._current = rgelt[0];
     }
     return (this._fValid = num == 1);
 }
        public bool MoveNext()
        {
            STORE_ASSEMBLY_FILE[] array = new STORE_ASSEMBLY_FILE[1];
            uint num = this._enum.Next(1U, array);

            if (num == 1U)
            {
                this._current = array[0];
            }
            return(this._fValid = (num == 1U));
        }
Пример #3
0
        public bool MoveNext()
        {
            STORE_ASSEMBLY_FILE[] rgelt = new STORE_ASSEMBLY_FILE[1];
            uint num = this._enum.Next(1, rgelt);

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