Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

33 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Provides methods that retrieve information about types at run time.</summary>
// 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)
{
}
/// <summary>Retrieves a collection that represents all methods defined on a specified type.</summary>
/// <param name="type">The type that contains the methods.</param>
/// <returns>A collection of methods for the specified type.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="type" /> is <see langword="null" />.</exception>
// Token: 0x060013F2 RID: 5106 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60013F2")]
[Address(RVA = "0x30CC470", Offset = "0x30CB470", VA = "0x1830CC470")]
public static IEnumerable<MethodInfo> GetRuntimeMethods(this Type type)
{
return null;
}
}
}