31 lines
1.1 KiB
C#
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: 0x020000C9 RID: 201
|
|
[Token(Token = "0x20000C9")]
|
|
[AttributeUsage(AttributeTargets.All)]
|
|
[ComVisible(true)]
|
|
[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: 0x06000618 RID: 1560 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000618")]
|
|
[Address(RVA = "0x41C700", Offset = "0x41B700", VA = "0x18041C700")]
|
|
public CLSCompliantAttribute(bool isCompliant)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000235 RID: 565
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000235")]
|
|
private bool m_compliant;
|
|
}
|
|
}
|