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