Skip() public method

public Skip ( uint elements ) : int
elements uint
return int
Exemplo n.º 1
0
        public int Clone(out IVsEnumDependencies enumDependencies)
        {
            ThreadHelper.ThrowIfNotOnUIThread();

            enumDependencies = new EnumDependencies(this.dependencyList);
            enumDependencies.Skip(this.nextIndex);
            return(VSConstants.S_OK);
        }
 public int Clone(out IVsEnumDependencies enumDependencies)
 {
     enumDependencies = new EnumDependencies(this.dependencyList);
     ErrorHandler.ThrowOnFailure(enumDependencies.Skip(this.nextIndex));
     return VSConstants.S_OK;
 }
Exemplo n.º 3
0
 public int Clone(out IVsEnumDependencies enumDependencies)
 {
     enumDependencies = new EnumDependencies(this.dependencyList);
     enumDependencies.Skip(this.nextIndex);
     return(VSConstants.S_OK);
 }
Exemplo n.º 4
0
 public int Clone(out IVsEnumDependencies enumDependencies)
 {
     enumDependencies = new EnumDependencies(this.dependencyList);
     ErrorHandler.ThrowOnFailure(enumDependencies.Skip(this.nextIndex));
     return(VSConstants.S_OK);
 }