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

31 lines
1.3 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Represents a collection of key/value pairs used to describe a configuration object as well as a <see cref="T:System.Configuration.SettingsProperty" /> object.</summary>
// Token: 0x02000389 RID: 905
[Token(Token = "0x2000389")]
[Serializable]
public class SettingsAttributeDictionary : Hashtable
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsAttributeDictionary" /> class.</summary>
// Token: 0x060017E7 RID: 6119 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E7")]
[Address(RVA = "0x28ABF30", Offset = "0x28AAD30", VA = "0x1828ABF30")]
public SettingsAttributeDictionary()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingsAttributeDictionary" /> class.</summary>
/// <param name="attributes">A collection of key/value pairs that are related to configuration settings.</param>
// Token: 0x060017E8 RID: 6120 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60017E8")]
[Address(RVA = "0x28ABF00", Offset = "0x28AAD00", VA = "0x1828ABF00")]
public SettingsAttributeDictionary(SettingsAttributeDictionary attributes)
{
}
}
}