This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,28 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Defines a copyright custom attribute for an assembly manifest.</summary>
// Token: 0x0200020C RID: 524
[Token(Token = "0x200020C")]
[AttributeUsage(AttributeTargets.Assembly)]
[ComVisible(true)]
public sealed class AssemblyCopyrightAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyCopyrightAttribute" /> class.</summary>
/// <param name="copyright">The copyright information.</param>
// Token: 0x060013F6 RID: 5110 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013F6")]
[Address(RVA = "0x681CA0", Offset = "0x680CA0", VA = "0x180681CA0")]
public AssemblyCopyrightAttribute(string copyright)
{
}
// Token: 0x04000A12 RID: 2578
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A12")]
private string m_copyright;
}
}