Files
Apr2020-Cpp2Il-Dump/Valve.Newtonsoft.Json/Utilities/EnumUtils.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

56 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace Valve.Newtonsoft.Json.Utilities
{
// Token: 0x02000047 RID: 71
[Token(Token = "0x2000047")]
internal static class EnumUtils
{
// Token: 0x0600024E RID: 590 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600024E")]
[Address(RVA = "0x318C740", Offset = "0x318B540", VA = "0x18318C740")]
private static BidirectionalDictionary<string, string> InitializeEnumType(Type type)
{
return null;
}
// Token: 0x0600024F RID: 591 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600024F")]
[Address(RVA = "0x318C430", Offset = "0x318B230", VA = "0x18318C430")]
public static IList<object> GetValues(Type enumType)
{
return null;
}
// Token: 0x06000250 RID: 592 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000250")]
[Address(RVA = "0x318CB10", Offset = "0x318B910", VA = "0x18318CB10")]
public static object ParseEnumName(string enumText, bool isNullable, Type t)
{
return null;
}
// Token: 0x06000251 RID: 593 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000251")]
[Address(RVA = "0x318CDE0", Offset = "0x318BBE0", VA = "0x18318CDE0")]
public static string ToEnumName(Type enumType, string enumText, bool camelCaseText)
{
return null;
}
// Token: 0x06000252 RID: 594 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000252")]
[Address(RVA = "0x318CD70", Offset = "0x318BB70", VA = "0x18318CD70")]
private static string ResolvedEnumName(BidirectionalDictionary<string, string> map, string enumText)
{
return null;
}
// Token: 0x0400019D RID: 413
[Token(Token = "0x400019D")]
private static readonly ThreadSafeStore<Type, BidirectionalDictionary<string, string>> EnumMemberNamesPerType;
}
}