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

36 lines
1.0 KiB
C#

using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// <summary>Defines a company name custom attribute for an assembly manifest.</summary>
// Token: 0x02000223 RID: 547
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class AssemblyCompanyAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyCompanyAttribute" /> class.</summary>
/// <param name="company">The company name information. </param>
// Token: 0x06001D61 RID: 7521 RVA: 0x0006E0D8 File Offset: 0x0006C2D8
public AssemblyCompanyAttribute(string company)
{
this.name = company;
}
/// <summary>Gets company name information.</summary>
/// <returns>A string containing the company name.</returns>
// 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;
}
}