33 lines
1.2 KiB
C#
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: 0x02000203 RID: 515
|
|
[Token(Token = "0x2000203")]
|
|
public static class RuntimeReflectionExtensions
|
|
{
|
|
// Token: 0x060013B3 RID: 5043 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60013B3")]
|
|
[Address(RVA = "0x295E7A0", Offset = "0x295D5A0", VA = "0x18295E7A0")]
|
|
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: 0x060013B4 RID: 5044 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x60013B4")]
|
|
[Address(RVA = "0x295E8C0", Offset = "0x295D6C0", VA = "0x18295E8C0")]
|
|
public static IEnumerable<MethodInfo> GetRuntimeMethods(this Type type)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|