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

34 lines
677 B
C#

using System;
namespace System
{
// Token: 0x02000004 RID: 4
[AttributeUsage(AttributeTargets.All, AllowMultiple = true)]
internal class MonoTODOAttribute : Attribute
{
// Token: 0x06000004 RID: 4 RVA: 0x00002104 File Offset: 0x00000304
public MonoTODOAttribute()
{
}
// Token: 0x06000005 RID: 5 RVA: 0x0000210C File Offset: 0x0000030C
public MonoTODOAttribute(string comment)
{
this.comment = comment;
}
// Token: 0x17000001 RID: 1
// (get) Token: 0x06000006 RID: 6 RVA: 0x0000211C File Offset: 0x0000031C
public string Comment
{
get
{
return this.comment;
}
}
// Token: 0x0400001E RID: 30
private string comment;
}
}