using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Defines a company name custom attribute for an assembly manifest.
// Token: 0x02000223 RID: 547
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class AssemblyCompanyAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The company name information.
// Token: 0x06001D61 RID: 7521 RVA: 0x0006E0D8 File Offset: 0x0006C2D8
public AssemblyCompanyAttribute(string company)
{
this.name = company;
}
/// Gets company name information.
/// A string containing the company name.
// Token: 0x17000541 RID: 1345
// (get) Token: 0x06001D62 RID: 7522 RVA: 0x0006E0E8 File Offset: 0x0006C2E8
public string Company
{
get
{
return this.name;
}
}
// Token: 0x040009E0 RID: 2528
private string name;
}
}