65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Collections
|
|
{
|
|
/// <summary>Defines a dictionary key/value pair that can be set or retrieved.</summary>
|
|
// Token: 0x020005BC RID: 1468
|
|
[Token(Token = "0x20005BC")]
|
|
[Serializable]
|
|
public struct DictionaryEntry
|
|
{
|
|
/// <summary>Initializes an instance of the <see cref="T:System.Collections.DictionaryEntry" /> type with the specified key and value.</summary>
|
|
/// <param name="key">The object defined in each key/value pair.</param>
|
|
/// <param name="value">The definition associated with <paramref name="key" />.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">
|
|
/// <paramref name="key" /> is <see langword="null" /> and the .NET Framework version is 1.0 or 1.1.</exception>
|
|
// Token: 0x06002D58 RID: 11608 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002D58")]
|
|
[Address(RVA = "0x4AF6A0", Offset = "0x4AE6A0", VA = "0x1804AF6A0")]
|
|
public DictionaryEntry(object key, object value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets the key in the key/value pair.</summary>
|
|
/// <returns>The key in the key/value pair.</returns>
|
|
// Token: 0x170006CF RID: 1743
|
|
// (get) Token: 0x06002D59 RID: 11609 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170006CF")]
|
|
public object Key
|
|
{
|
|
[Token(Token = "0x6002D59")]
|
|
[Address(RVA = "0x63E630", Offset = "0x63D630", VA = "0x18063E630")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the value in the key/value pair.</summary>
|
|
/// <returns>The value in the key/value pair.</returns>
|
|
// Token: 0x170006D0 RID: 1744
|
|
// (get) Token: 0x06002D5A RID: 11610 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170006D0")]
|
|
public object Value
|
|
{
|
|
[Token(Token = "0x6002D5A")]
|
|
[Address(RVA = "0x634760", Offset = "0x633760", VA = "0x180634760")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04001A1E RID: 6686
|
|
[FieldOffset(Offset = "0x0")]
|
|
[Token(Token = "0x4001A1E")]
|
|
private object _key;
|
|
|
|
// Token: 0x04001A1F RID: 6687
|
|
[FieldOffset(Offset = "0x8")]
|
|
[Token(Token = "0x4001A1F")]
|
|
private object _value;
|
|
}
|
|
}
|