This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Configuration
{
/// <summary>Represents a custom settings attribute used to associate settings information with a settings property.</summary>
// Token: 0x020003B1 RID: 945
[Token(Token = "0x20003B1")]
[AttributeUsage(AttributeTargets.Property)]
public class SettingAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Configuration.SettingAttribute" /> class.</summary>
// Token: 0x06001902 RID: 6402 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6001902")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080")]
public SettingAttribute()
{
}
}
}