You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
973 B
37 lines
973 B
#if FAT |
|
|
|
using System.Collections.Generic; |
|
|
|
namespace LinqInternal.Collections.Specialized |
|
{ |
|
[System.Diagnostics.DebuggerDisplay("Count={Count}")] |
|
internal sealed partial class NullAwareDictionary<TKey, TValue> : IExtendedDictionary<TKey, TValue> |
|
{ |
|
IEnumerable<TKey> IReadOnlyDictionary<TKey, TValue>.Keys |
|
{ |
|
get { return _keys; } |
|
} |
|
|
|
IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values |
|
{ |
|
get { return _values; } |
|
} |
|
|
|
IReadOnlyCollection<KeyValuePair<TKey, TValue>> IExtendedCollection<KeyValuePair<TKey, TValue>>.AsReadOnly |
|
{ |
|
get { return _readOnly; } |
|
} |
|
|
|
IReadOnlyCollection<TKey> IExtendedReadOnlyDictionary<TKey, TValue>.Keys |
|
{ |
|
get { return _keys; } |
|
} |
|
|
|
IReadOnlyCollection<TValue> IExtendedReadOnlyDictionary<TKey, TValue>.Values |
|
{ |
|
get { return _values; } |
|
} |
|
} |
|
} |
|
|
|
#endif |