Files
2026-06-04 11:42:34 +02:00

34 lines
691 B
C#

using System;
namespace System
{
// Token: 0x02000066 RID: 102
[AttributeUsage(AttributeTargets.All, AllowMultiple = true)]
internal class MonoTODOAttribute : Attribute
{
// Token: 0x060006DC RID: 1756 RVA: 0x000153C4 File Offset: 0x000135C4
public MonoTODOAttribute()
{
}
// Token: 0x060006DD RID: 1757 RVA: 0x000153CC File Offset: 0x000135CC
public MonoTODOAttribute(string comment)
{
this.comment = comment;
}
// Token: 0x170000CC RID: 204
// (get) Token: 0x060006DE RID: 1758 RVA: 0x000153DC File Offset: 0x000135DC
public string Comment
{
get
{
return this.comment;
}
}
// Token: 0x040000DB RID: 219
private string comment;
}
}