Output: Move getParametersString into MethodBase/ParameterInfo

This commit is contained in:
Katy Coe
2019-10-31 23:23:52 +01:00
parent 3560661f9c
commit dbc3ef40b0
3 changed files with 11 additions and 20 deletions

View File

@@ -69,5 +69,9 @@ namespace Il2CppInspector.Reflection
// TODO: DefaultValue/HasDefaultValue
}
public string GetModifierString() =>
(IsOptional? "optional " : "") +
(IsOut? "out " : "");
}
}