using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Provides a text description for an assembly.
// Token: 0x02000228 RID: 552
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class AssemblyDescriptionAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The assembly description.
// Token: 0x06001D6B RID: 7531 RVA: 0x0006E150 File Offset: 0x0006C350
public AssemblyDescriptionAttribute(string description)
{
this.name = description;
}
/// Gets assembly description information.
/// A string containing the assembly description.
// 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;
}
}