using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Specifies a description for an assembly.
// Token: 0x02000232 RID: 562
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
[ComVisible(true)]
public sealed class AssemblyTitleAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The assembly title.
// Token: 0x06001DA7 RID: 7591 RVA: 0x0006EB54 File Offset: 0x0006CD54
public AssemblyTitleAttribute(string title)
{
this.name = title;
}
/// Gets assembly title information.
/// The assembly title.
// Token: 0x1700055A RID: 1370
// (get) Token: 0x06001DA8 RID: 7592 RVA: 0x0006EB64 File Offset: 0x0006CD64
public string Title
{
get
{
return this.name;
}
}
// Token: 0x04000A01 RID: 2561
private string name;
}
}