System.Deployment.Internal.Isolation.StoreAssemblyEnumeration.MoveNext C# (CSharp) Method

MoveNext() public method

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