This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
// Token: 0x02000627 RID: 1575
[Token(Token = "0x2000627")]
internal struct ConcurrentSet<KeyType, ItemType> where ItemType : ConcurrentSetItem<KeyType, ItemType>
{
// Token: 0x06002F92 RID: 12178 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002F92")]
[Address(RVA = "0x3157D60", Offset = "0x3156B60", VA = "0x183157D60")]
public ItemType TryGet(KeyType key)
{
return null;
}
// Token: 0x06002F93 RID: 12179 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002F93")]
[Address(RVA = "0x3157B70", Offset = "0x3156970", VA = "0x183157B70")]
public ItemType GetOrAdd(ItemType newItem)
{
return null;
}
// Token: 0x04001A7E RID: 6782
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4001A7E")]
private ItemType[] items;
}
}