2 implementations of Current
mscorlib (2)
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (1)
87public T Current
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (1)
87public object Current { get { return iterator.Current; } }
3 references to Current
mscorlib (3)
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (1)
112return (object)((IIterator<T>)this).Current;
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (1)
552public object Current { get { return (object)_iterator.Current; } }
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (1)
186m_current = m_iterator.Current;