Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Collections/Generic/CollectionExtensions.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

27 lines
849 B
C#

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;
}
}
}