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

16 lines
351 B
C#

using System;
namespace System
{
// Token: 0x02000069 RID: 105
[AttributeUsage(AttributeTargets.All, AllowMultiple = true)]
internal class MonoInternalNoteAttribute : MonoTODOAttribute
{
// Token: 0x060006E1 RID: 1761 RVA: 0x000153FC File Offset: 0x000135FC
public MonoInternalNoteAttribute(string comment)
: base(comment)
{
}
}
}