This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,32 @@
using System;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Defines a key/value metadata pair for the decorated assembly.</summary>
// Token: 0x02000211 RID: 529
[Token(Token = "0x2000211")]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class AssemblyMetadataAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyMetadataAttribute" /> class by using the specified metadata key and value.</summary>
/// <param name="key">The metadata key.</param>
/// <param name="value">The metadata value.</param>
// Token: 0x060013C4 RID: 5060 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013C4")]
[Address(RVA = "0x497CA0", Offset = "0x496AA0", VA = "0x180497CA0")]
public AssemblyMetadataAttribute(string key, string value)
{
}
// Token: 0x04000A14 RID: 2580
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A14")]
private string m_key;
// Token: 0x04000A15 RID: 2581
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000A15")]
private string m_value;
}
}