13 lines
353 B
C#
13 lines
353 B
C#
using System;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Indicates that a native enumeration is not qualified by the enumeration type name. This class cannot be inherited.</summary>
|
|
// Token: 0x020002B0 RID: 688
|
|
[AttributeUsage(AttributeTargets.Enum)]
|
|
[Serializable]
|
|
public sealed class ScopelessEnumAttribute : Attribute
|
|
{
|
|
}
|
|
}
|