5 instantiations of IEnumerator
PresentationFramework (5)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (5)
206thisPtr == IntPtr.Zero ? null : new IEnumerator<T>(ObjRefFromAbi(thisPtr)); 209new IEnumerator<T>(ObjRefFromAbi(thisPtr)); 226this(new global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.IEnumerator<T>(obj)) 562public static implicit operator IEnumerator<T>(IObjectReference obj) => (obj != null) ? new IEnumerator<T>(obj) : null; 563public 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)
79if (first is global::MS.Internal.WindowsRuntime.ABI.System.Collections.Generic.IEnumerator<T> iterator) 96new IEnumerator<T>.ToAbiHelper(m_enumerable.GetEnumerator()); 180return ABI.System.Collections.Generic.IEnumerator<T>.FromAbiInternal(__retval); 184ABI.System.Collections.Generic.IEnumerator<T>.DisposeAbi(__retval); 200obj is null ? null : ComWrappersSupport.CreateCCWForObject(obj).As<Vftbl>(GuidGenerator.GetIID(typeof(IEnumerator<T>))); 219public static string GetGuidSignature() => GuidGenerator.GetSignature(typeof(IEnumerator<T>)); 428public static Guid PIID = GuidGenerator.CreateIID(typeof(IEnumerator<T>)); 562public static implicit operator IEnumerator<T>(IObjectReference obj) => (obj != null) ? new IEnumerator<T>(obj) : null; 563public static implicit operator IEnumerator<T>(ObjectReference<Vftbl> obj) => (obj != null) ? new IEnumerator<T>(obj) : null;
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (1)
121new IEnumerator<T>.ToAbiHelper(_list.GetEnumerator());