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