using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Defines a copyright custom attribute for an assembly manifest.
// Token: 0x02000225 RID: 549
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class AssemblyCopyrightAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The copyright information.
// Token: 0x06001D65 RID: 7525 RVA: 0x0006E108 File Offset: 0x0006C308
public AssemblyCopyrightAttribute(string copyright)
{
this.name = copyright;
}
/// Gets copyright information.
/// A string containing the copyright information.
// Token: 0x17000543 RID: 1347
// (get) Token: 0x06001D66 RID: 7526 RVA: 0x0006E118 File Offset: 0x0006C318
public string Copyright
{
get
{
return this.name;
}
}
// Token: 0x040009E2 RID: 2530
private string name;
}
}