29 lines
964 B
C#
29 lines
964 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Defines a company name custom attribute for an assembly manifest.</summary>
|
|
// Token: 0x02000208 RID: 520
|
|
[Token(Token = "0x2000208")]
|
|
[ComVisible(true)]
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
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: 0x060013BB RID: 5051 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013BB")]
|
|
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
|
|
public AssemblyCompanyAttribute(string company)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000A0B RID: 2571
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000A0B")]
|
|
private string m_company;
|
|
}
|
|
}
|