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,36 @@
using System;
using System.Collections.Concurrent;
using Cpp2IlInjected;
namespace Newtonsoft.Json.Utilities
{
// Token: 0x0200006F RID: 111
[Token(Token = "0x200006F")]
internal class ThreadSafeStore<TKey, TValue>
{
// Token: 0x06000258 RID: 600 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000258")]
[Address(RVA = "0x2DE9310", Offset = "0x2DE8310", VA = "0x182DE9310")]
public ThreadSafeStore(Func<TKey, TValue> creator)
{
}
// Token: 0x06000259 RID: 601 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000259")]
[Address(RVA = "0x2DE91D0", Offset = "0x2DE81D0", VA = "0x182DE91D0")]
public TValue Get(TKey key)
{
return null;
}
// Token: 0x040001A7 RID: 423
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001A7")]
private readonly ConcurrentDictionary<TKey, TValue> _concurrentStore;
// Token: 0x040001A8 RID: 424
[FieldOffset(Offset = "0x0")]
[Token(Token = "0x40001A8")]
private readonly Func<TKey, TValue> _creator;
}
}