Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/AssemblyFileVersionAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

31 lines
1.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Instructs a compiler to use a specific version number for the Win32 file version resource. The Win32 file version is not required to be the same as the assembly's version number.</summary>
// Token: 0x02000215 RID: 533
[Token(Token = "0x2000215")]
[AttributeUsage(AttributeTargets.Assembly)]
[ComVisible(true)]
public sealed class AssemblyFileVersionAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyFileVersionAttribute" /> class, specifying the file version.</summary>
/// <param name="version">The file version.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="version" /> is <see langword="null" />.</exception>
// Token: 0x060013FF RID: 5119 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013FF")]
[Address(RVA = "0x2D64140", Offset = "0x2D63140", VA = "0x182D64140")]
public AssemblyFileVersionAttribute(string version)
{
}
// Token: 0x04000A1B RID: 2587
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000A1B")]
private string _version;
}
}