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,26 @@
using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x02000605 RID: 1541
[Token(Token = "0x2000605")]
public static class CollectionExtensions
{
// Token: 0x0600302D RID: 12333 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600302D")]
[Address(RVA = "0x21B2F10", Offset = "0x21B1F10", VA = "0x1821B2F10")]
public static TValue GetValueOrDefault<TValue, TKey>(this IReadOnlyDictionary<TKey, TValue> dictionary, TKey key)
{
return null;
}
// Token: 0x0600302E RID: 12334 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600302E")]
[Address(RVA = "0x293A160", Offset = "0x2939160", VA = "0x18293A160")]
public static TValue GetValueOrDefault<TValue, TKey>(this IReadOnlyDictionary<TKey, TValue> dictionary, TKey key, TValue defaultValue)
{
return null;
}
}
}