Skip to content

Commit c5bed6c

Browse files
Update src/libraries/System.ComponentModel.TypeConverter/src/System/ComponentModel/ContextAwareConcurrentDictionary.cs
Co-authored-by: Copilot <[email protected]>
1 parent 8c56163 commit c5bed6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/System.ComponentModel.TypeConverter/src/System/ComponentModel/ContextAwareConcurrentDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public Enumerator(IEnumerator<KeyValuePair<TKey, TValue>> defaultEnumerator, IEn
100100
Dispose();
101101
}
102102

103-
public object Current => Current;
103+
public object Current => ((IEnumerator<KeyValuePair<TKey, TValue>>)this).Current;
104104

105105
KeyValuePair<TKey, TValue> IEnumerator<KeyValuePair<TKey, TValue>>.Current
106106
{

0 commit comments

Comments
 (0)