using System; using System.Collections.Generic; using Cpp2IlInjected; namespace System.Reflection { /// Provides methods that retrieve information about types at run time. // Token: 0x0200020A RID: 522 [Token(Token = "0x200020A")] public static class RuntimeReflectionExtensions { // Token: 0x060013F1 RID: 5105 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60013F1")] [Address(RVA = "0x30CC350", Offset = "0x30CB350", VA = "0x1830CC350")] private static void CheckAndThrow(Type t) { } /// Retrieves a collection that represents all methods defined on a specified type. /// The type that contains the methods. /// A collection of methods for the specified type. /// /// is . // Token: 0x060013F2 RID: 5106 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x60013F2")] [Address(RVA = "0x30CC470", Offset = "0x30CB470", VA = "0x1830CC470")] public static IEnumerable GetRuntimeMethods(this Type type) { return null; } } }