using System; using System.Runtime.InteropServices; namespace System.Reflection { /// Specifies the version of the assembly being attributed. // Token: 0x0200004A RID: 74 [ComVisible(true)] [AttributeUsage(AttributeTargets.Assembly, Inherited = false)] public sealed class AssemblyVersionAttribute : Attribute { /// Initializes a new instance of the AssemblyVersionAttribute class with the version number of the assembly being attributed. /// The version number of the attributed assembly. // Token: 0x0600066E RID: 1646 RVA: 0x00014B88 File Offset: 0x00012D88 public AssemblyVersionAttribute(string version) { this.name = version; } /// Gets the version number of the attributed assembly. /// A string containing the assembly version number. // Token: 0x170000B7 RID: 183 // (get) Token: 0x0600066F RID: 1647 RVA: 0x00014B98 File Offset: 0x00012D98 public string Version { get { return this.name; } } // Token: 0x0400009F RID: 159 private string name; } }