This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>Contains methods for converting <see cref="T:System.Type" /> objects.</summary>
// Token: 0x02000224 RID: 548
[Token(Token = "0x2000224")]
public static class IntrospectionExtensions
{
/// <summary>Returns the <see cref="T:System.Reflection.TypeInfo" /> representation of the specified type.</summary>
/// <param name="type">The type to convert.</param>
/// <returns>The converted object.</returns>
// Token: 0x0600140F RID: 5135 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x600140F")]
[Address(RVA = "0x30BA140", Offset = "0x30B9140", VA = "0x1830BA140")]
public static TypeInfo GetTypeInfo(this Type type)
{
return null;
}
}
}