System.Deployment.Internal.Isolation.StoreAssemblyFileEnumeration.MoveNext C# (CSharp) Méthode

MoveNext() public méthode

public MoveNext ( ) : bool
Résultat bool
        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);
        }