using System;
using System.Runtime.InteropServices;
namespace System.Reflection
{
/// Defines additional version information for an assembly manifest.
// Token: 0x0200022B RID: 555
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public sealed class AssemblyInformationalVersionAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The assembly version information.
// Token: 0x06001D74 RID: 7540 RVA: 0x0006E1D0 File Offset: 0x0006C3D0
public AssemblyInformationalVersionAttribute(string informationalVersion)
{
this.name = informationalVersion;
}
/// Gets version information.
/// A string containing the version information.
// Token: 0x1700054A RID: 1354
// (get) Token: 0x06001D75 RID: 7541 RVA: 0x0006E1E0 File Offset: 0x0006C3E0
public string InformationalVersion
{
get
{
return this.name;
}
}
// Token: 0x040009E8 RID: 2536
private string name;
}
}