System.Deployment.Internal.Isolation.StoreAssemblyFileEnumeration.MoveNext C# (CSharp) 메소드

MoveNext() 공개 메소드

public MoveNext ( ) : bool
리턴 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);
        }