2 implementations of HasCurrent
mscorlib (2)
system\runtime\interopservices\windowsruntime\enumeratortoiteratoradapter.cs (1)
116
public bool
HasCurrent
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (1)
88
public bool
HasCurrent
{ get { return iterator.HasCurrent; } }
2 references to HasCurrent
mscorlib (2)
system\runtime\interopservices\windowsruntime\icustompropertyprovider.cs (1)
551
public bool HasCurrent { get { return _iterator.
HasCurrent
; } }
system\runtime\interopservices\windowsruntime\iteratortoenumeratoradapter.cs (1)
168
m_hadCurrent = m_iterator.
HasCurrent
;