Model: Add basic concrete generic method definitions from MethodSpecs

This commit is contained in:
Katy Coe
2020-02-02 03:56:50 +01:00
parent e33206a360
commit d2cb63dc95
4 changed files with 29 additions and 4 deletions

View File

@@ -95,6 +95,11 @@ namespace Il2CppInspector.Reflection
}
}
// Create a concrete type parameter from a generic type parameter
public ParameterInfo(Il2CppModel model, ParameterInfo generic, TypeInfo concrete) {
// TODO: Implement generic parameter substitution
}
// ref will be handled as part of the type name
public string GetModifierString() =>
(IsIn ? "in " : "")