Files
2026-04-10 22:50:51 +02:00

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: 0x0200059D RID: 1437
[Token(Token = "0x200059D")]
[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: 0x06002B44 RID: 11076 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002B44")]
[Address(RVA = "0x479F00", Offset = "0x478D00", VA = "0x180479F00")]
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: 0x17000657 RID: 1623
// (get) Token: 0x06002B45 RID: 11077 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000657")]
public object Key
{
[Token(Token = "0x6002B45")]
[Address(RVA = "0x41D090", Offset = "0x41BE90", VA = "0x18041D090")]
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: 0x17000658 RID: 1624
// (get) Token: 0x06002B46 RID: 11078 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000658")]
public object Value
{
[Token(Token = "0x6002B46")]
[Address(RVA = "0x57C630", Offset = "0x57B430", VA = "0x18057C630")]
get
{
return null;
}
}
// Token: 0x0400195B RID: 6491
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x400195B")]
private object _key;
// Token: 0x0400195C RID: 6492
[FieldOffset(Offset = "0x8")]
[Token(Token = "0x400195C")]
private object _value;
}
}