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

29 lines
917 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Specifies a description for an assembly.</summary>
// Token: 0x0200020A RID: 522
[Token(Token = "0x200020A")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class AssemblyTitleAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyTitleAttribute" /> class.</summary>
/// <param name="title">The assembly title.</param>
// Token: 0x060013BD RID: 5053 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013BD")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public AssemblyTitleAttribute(string title)
{
}
// Token: 0x04000A0D RID: 2573
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A0D")]
private string m_title;
}
}