Files
2026-06-04 11:42:34 +02:00

36 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Provides a text description for an assembly.</summary>
// Token: 0x02000228 RID: 552
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
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: 0x06001D6B RID: 7531 RVA: 0x0006E150 File Offset: 0x0006C350
public AssemblyDescriptionAttribute(string description)
{
this.name = description;
}
/// <summary>Gets assembly description information.</summary>
/// <returns>A string containing the assembly description.</returns>
// Token: 0x17000546 RID: 1350
// (get) Token: 0x06001D6C RID: 7532 RVA: 0x0006E160 File Offset: 0x0006C360
public string Description
{
get
{
return this.name;
}
}
// Token: 0x040009E5 RID: 2533
private string name;
}
}