This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
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;
}
}