Refactor MethodBase / MethodInfo

This commit is contained in:
Katy Coe
2019-10-28 03:06:32 +01:00
parent 4e0f11bde4
commit 2e256909a6
4 changed files with 83 additions and 83 deletions

View File

@@ -41,7 +41,7 @@ namespace Il2CppInspector.Reflection
public int Position { get; private set; }
// Create a parameter. Specify paramIndex == -1 for a return type parameter
public ParameterInfo(Il2CppInspector pkg, int paramIndex, MethodInfo declaringMethod) {
public ParameterInfo(Il2CppInspector pkg, int paramIndex, MethodBase declaringMethod) {
Member = declaringMethod;
if (paramIndex == -1) {