using System;
using Cpp2IlInjected;
namespace System.Reflection
{
/// Defines a key/value metadata pair for the decorated assembly.
// Token: 0x02000218 RID: 536
[Token(Token = "0x2000218")]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class AssemblyMetadataAttribute : Attribute
{
/// Initializes a new instance of the class by using the specified metadata key and value.
/// The metadata key.
/// The metadata value.
// Token: 0x06001402 RID: 5122 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001402")]
[Address(RVA = "0x4714F0", Offset = "0x4704F0", VA = "0x1804714F0")]
public AssemblyMetadataAttribute(string key, string value)
{
}
// Token: 0x04000A1E RID: 2590
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A1E")]
private string m_key;
// Token: 0x04000A1F RID: 2591
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000A1F")]
private string m_value;
}
}