using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
/// Defines a key/value pair that can be set or retrieved.
/// The type of the key.
/// The type of the value.
// Token: 0x02000607 RID: 1543
[Token(Token = "0x2000607")]
[Serializable]
public struct KeyValuePair
{
/// Initializes a new instance of the structure with the specified key and value.
/// The object defined in each key/value pair.
/// The definition associated with .
// Token: 0x06003030 RID: 12336 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6003030")]
[Address(RVA = "0x11091E0", Offset = "0x11081E0", VA = "0x1811091E0")]
public KeyValuePair(TKey key, TValue value)
{
}
/// Gets the key in the key/value pair.
/// A that is the key of the .
// Token: 0x170007A1 RID: 1953
// (get) Token: 0x06003031 RID: 12337 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170007A1")]
public TKey Key
{
[Token(Token = "0x6003031")]
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
get
{
return null;
}
}
/// Gets the value in the key/value pair.
/// A that is the value of the .
// Token: 0x170007A2 RID: 1954
// (get) Token: 0x06003032 RID: 12338 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170007A2")]
public TValue Value
{
[Token(Token = "0x6003032")]
[Address(RVA = "0x634760", Offset = "0x633760", VA = "0x180634760")]
get
{
return null;
}
}
/// Returns a string representation of the , using the string representations of the key and value.
/// A string representation of the , which includes the string representations of the key and value.
// Token: 0x06003033 RID: 12339 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6003033")]
[Address(RVA = "0x2E66F10", Offset = "0x2E65F10", VA = "0x182E66F10", Slot = "3")]
public override string ToString()
{
return null;
}
// Token: 0x04001AE3 RID: 6883
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4001AE3")]
private TKey key;
// Token: 0x04001AE4 RID: 6884
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4001AE4")]
private TValue value;
}
}