46 lines
1.7 KiB
C#
46 lines
1.7 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.InteropServices
|
|
{
|
|
/// <summary>Indicates to a COM client that all classes in the current version of an assembly are compatible with classes in an earlier version of the assembly.</summary>
|
|
// Token: 0x02000598 RID: 1432
|
|
[Token(Token = "0x2000598")]
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
[ComVisible(true)]
|
|
public sealed class ComCompatibleVersionAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComCompatibleVersionAttribute" /> class with the major version, minor version, build, and revision numbers of the assembly.</summary>
|
|
/// <param name="major">The major version number of the assembly.</param>
|
|
/// <param name="minor">The minor version number of the assembly.</param>
|
|
/// <param name="build">The build number of the assembly.</param>
|
|
/// <param name="revision">The revision number of the assembly.</param>
|
|
// Token: 0x06002CBD RID: 11453 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002CBD")]
|
|
[Address(RVA = "0x2CEC290", Offset = "0x2CEB290", VA = "0x182CEC290")]
|
|
public ComCompatibleVersionAttribute(int major, int minor, int build, int revision)
|
|
{
|
|
}
|
|
|
|
// Token: 0x040019E6 RID: 6630
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x40019E6")]
|
|
internal int _major;
|
|
|
|
// Token: 0x040019E7 RID: 6631
|
|
[FieldOffset(Offset = "0x14")]
|
|
[Token(Token = "0x40019E7")]
|
|
internal int _minor;
|
|
|
|
// Token: 0x040019E8 RID: 6632
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x40019E8")]
|
|
internal int _build;
|
|
|
|
// Token: 0x040019E9 RID: 6633
|
|
[FieldOffset(Offset = "0x1C")]
|
|
[Token(Token = "0x40019E9")]
|
|
internal int _revision;
|
|
}
|
|
}
|