Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/AssemblyDescriptionAttribute.cs
T
2026-04-10 22:50:51 +02:00

29 lines
963 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Provides a text description for an assembly.</summary>
// Token: 0x02000209 RID: 521
[Token(Token = "0x2000209")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class AssemblyDescriptionAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyDescriptionAttribute" /> class.</summary>
/// <param name="description">The assembly description.</param>
// Token: 0x060013BC RID: 5052 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013BC")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public AssemblyDescriptionAttribute(string description)
{
}
// Token: 0x04000A0C RID: 2572
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A0C")]
private string m_description;
}
}