Files
2026-04-10 22:50:51 +02:00

31 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Indicates whether a program element is compliant with the Common Language Specification (CLS). This class cannot be inherited.</summary>
// Token: 0x020000C2 RID: 194
[Token(Token = "0x20000C2")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.All)]
[Serializable]
public sealed class CLSCompliantAttribute : Attribute
{
/// <summary>Initializes an instance of the <see cref="T:System.CLSCompliantAttribute" /> class with a Boolean value indicating whether the indicated program element is CLS-compliant.</summary>
/// <param name="isCompliant">
/// <see langword="true" /> if CLS-compliant; otherwise, <see langword="false" />.</param>
// Token: 0x060005FB RID: 1531 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60005FB")]
[Address(RVA = "0x162F3C0", Offset = "0x162E1C0", VA = "0x18162F3C0")]
public CLSCompliantAttribute(bool isCompliant)
{
}
// Token: 0x0400022B RID: 555
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x400022B")]
private bool m_compliant;
}
}