5 instantiations of IEnumerator
PresentationFramework (5)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (5)
200thisPtr == IntPtr.Zero ? null : new IEnumerator<T>(ObjRefFromAbi(thisPtr)); 203new IEnumerator<T>(ObjRefFromAbi(thisPtr)); 220this(new global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.IEnumerator<T>(obj)) 556public static implicit operator IEnumerator<T>(IObjectReference obj) => (obj != null) ? new IEnumerator<T>(obj) : null; 557public static implicit operator IEnumerator<T>(ObjectReference<Vftbl> obj) => (obj != null) ? new IEnumerator<T>(obj) : null;
10 references to IEnumerator
PresentationFramework (10)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (9)
73if (first is global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.IEnumerator<T> iterator) 90new IEnumerator<T>.ToAbiHelper(m_enumerable.GetEnumerator()); 174return ABI.System.Collections.Generic.IEnumerator<T>.FromAbiInternal(__retval); 178ABI.System.Collections.Generic.IEnumerator<T>.DisposeAbi(__retval); 194obj is null ? null : ComWrappersSupport.CreateCCWForObject(obj).As<Vftbl>(GuidGenerator.GetIID(typeof(IEnumerator<T>))); 213public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(IEnumerator<T>)); 422public static Guid PIID = GuidGenerator.CreateIID(typeof(IEnumerator<T>)); 556public static implicit operator IEnumerator<T>(IObjectReference obj) => (obj != null) ? new IEnumerator<T>(obj) : null; 557public static implicit operator IEnumerator<T>(ObjectReference<Vftbl> obj) => (obj != null) ? new IEnumerator<T>(obj) : null;
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (1)
115new IEnumerator<T>.ToAbiHelper(_list.GetEnumerator());