Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Collections/Generic/CollectionExtensions.cs
T
2026-04-10 22:50:51 +02:00

27 lines
849 B
C#

using System;
using Cpp2IlInjected;
namespace System.Collections.Generic
{
// Token: 0x020005E5 RID: 1509
[Token(Token = "0x20005E5")]
public static class CollectionExtensions
{
// Token: 0x06002E15 RID: 11797 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002E15")]
[Address(RVA = "0x19089B0", Offset = "0x19077B0", VA = "0x1819089B0")]
public static TValue GetValueOrDefault<TValue, TKey>(this IReadOnlyDictionary<TKey, TValue> dictionary, TKey key)
{
return null;
}
// Token: 0x06002E16 RID: 11798 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002E16")]
[Address(RVA = "0x2383740", Offset = "0x2382540", VA = "0x182383740")]
public static TValue GetValueOrDefault<TValue, TKey>(this IReadOnlyDictionary<TKey, TValue> dictionary, TKey key, TValue defaultValue)
{
return null;
}
}
}