How does Dictionary<T> work with key objects that don't implement Equals and GetHashCode?
- by DayOne
If I place a key object in an Dictionary that doesn't implement Equals and GetHashCode how does the Dictionary ContainsKey work? By checking the references are equal?
Thanks