System.Collections.Generic.KeyValuePair<TKey, TValue>
namespace System.Collections.Generic
{
public struct KeyValuePair<TKey, TValue>
{
public TKey Key { get; }
public TValue Value { get; }
public KeyValuePair(TKey key, TValue value);
}
}