This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,31 @@
using System;
using Cpp2IlInjected;
namespace System.Diagnostics.Tracing
{
// Token: 0x02000648 RID: 1608
[Token(Token = "0x2000648")]
internal struct ConcurrentSet<KeyType, ItemType> where ItemType : ConcurrentSetItem<KeyType, ItemType>
{
// Token: 0x060031AA RID: 12714 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60031AA")]
[Address(RVA = "0x34A79E0", Offset = "0x34A69E0", VA = "0x1834A79E0")]
public ItemType TryGet(KeyType key)
{
return null;
}
// Token: 0x060031AB RID: 12715 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60031AB")]
[Address(RVA = "0x34A77F0", Offset = "0x34A67F0", VA = "0x1834A77F0")]
public ItemType GetOrAdd(ItemType newItem)
{
return null;
}
// Token: 0x04001B41 RID: 6977
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x4001B41")]
private ItemType[] items;
}
}