terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
SignatureTypeExtensions.cs
Go to the documentation of this file.
1using System;
2
3namespace System.Reflection
4{
5 // Token: 0x020004F1 RID: 1265
6 internal static class SignatureTypeExtensions
7 {
8 // Token: 0x060024C5 RID: 9413 RVA: 0x0005144C File Offset: 0x0004F64C
9 public static bool MatchesParameterTypeExactly(this Type pattern, ParameterInfo parameter)
10 {
11 bool flag;
12 if (false)
13 {
14 return flag;
15 }
16 return flag;
17 }
18
19 // Token: 0x060024C6 RID: 9414 RVA: 0x00051460 File Offset: 0x0004F660
20 internal static bool MatchesExactly(this SignatureType pattern, Type actual)
21 {
22 bool isByRef = pattern.IsByRef;
23 return pattern.IsByRef;
24 }
25
26 // Token: 0x060024C7 RID: 9415 RVA: 0x00051490 File Offset: 0x0004F690
28 {
29 Type type;
30 return type;
31 }
32
33 // Token: 0x060024C8 RID: 9416 RVA: 0x000514A0 File Offset: 0x0004F6A0
35 {
36 Type type;
37 if (type != null)
38 {
39 return type.TryMakeArrayType();
40 }
42 }
43
44 // Token: 0x060024C9 RID: 9417 RVA: 0x0005150C File Offset: 0x0004F70C
45 private static Type TryMakeArrayType(this Type type)
46 {
47 }
48
49 // Token: 0x060024CA RID: 9418 RVA: 0x0005151C File Offset: 0x0004F71C
50 private static Type TryMakeArrayType(this Type type, int rank)
51 {
52 }
53
54 // Token: 0x060024CB RID: 9419 RVA: 0x0005152C File Offset: 0x0004F72C
55 private static Type TryMakeByRefType(this Type type)
56 {
57 }
58
59 // Token: 0x060024CC RID: 9420 RVA: 0x0005153C File Offset: 0x0004F73C
60 private static Type TryMakePointerType(this Type type)
61 {
62 }
63
64 // Token: 0x060024CD RID: 9421 RVA: 0x0005154C File Offset: 0x0004F74C
65 private static Type TryMakeGenericType(this Type type, Type[] instantiation)
66 {
67 }
68 }
69}
class f__AnonymousType0<< Count > j__TPar
static bool MatchesExactly(this SignatureType pattern, Type actual)
static Type TryMakeGenericType(this Type type, Type[] instantiation)
static Type TryMakeArrayType(this Type type, int rank)
static bool MatchesParameterTypeExactly(this Type pattern, ParameterInfo parameter)
static Type TryResolve(this SignatureType signatureType, Type[] genericMethodParameters)
static Type TryResolveAgainstGenericMethod(this SignatureType signatureType, MethodInfo genericMethod)
bool IsByRef
Definition Type.cs:369