using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace System.Collections
{
/// Defines a dictionary key/value pair that can be set or retrieved.
/// 1
// Token: 0x02000129 RID: 297
[DebuggerDisplay("{_value}", Name = "[{_key}]")]
[ComVisible(true)]
[Serializable]
public struct DictionaryEntry
{
/// Initializes an instance of the type with the specified key and value.
/// The object defined in each key/value pair.
/// The definition associated with .
///
/// is null and the .NET Framework version is 1.0 or 1.1.
// Token: 0x06000F74 RID: 3956 RVA: 0x00040A18 File Offset: 0x0003EC18
public DictionaryEntry(object key, object value)
{
this._key = key;
this._value = value;
}
/// Gets or sets the key in the key/value pair.
/// The key in the key/value pair.
/// 1
// Token: 0x1700026E RID: 622
// (get) Token: 0x06000F75 RID: 3957 RVA: 0x00040A28 File Offset: 0x0003EC28
// (set) Token: 0x06000F76 RID: 3958 RVA: 0x00040A30 File Offset: 0x0003EC30
public object Key
{
get
{
return this._key;
}
set
{
this._key = value;
}
}
/// Gets or sets the value in the key/value pair.
/// The value in the key/value pair.
/// 1
// Token: 0x1700026F RID: 623
// (get) Token: 0x06000F77 RID: 3959 RVA: 0x00040A3C File Offset: 0x0003EC3C
// (set) Token: 0x06000F78 RID: 3960 RVA: 0x00040A44 File Offset: 0x0003EC44
public object Value
{
get
{
return this._value;
}
set
{
this._value = value;
}
}
// Token: 0x040003BD RID: 957
private object _key;
// Token: 0x040003BE RID: 958
private object _value;
}
}