Files
Dec2017-Script-Dump/mscorlib/System/Runtime/CompilerServices/CompilerGeneratedAttribute.cs
T
2026-06-04 11:42:34 +02:00

13 lines
346 B
C#

using System;
namespace System.Runtime.CompilerServices
{
/// <summary>Distinguishes a compiler-generated element from a user-generated element. This class cannot be inherited.</summary>
// Token: 0x02000051 RID: 81
[AttributeUsage(AttributeTargets.All)]
[Serializable]
public sealed class CompilerGeneratedAttribute : Attribute
{
}
}