Model: Use + in FullName for nested types, no spaces between generic type parameters
This commit is contained in:
@@ -104,7 +104,7 @@ namespace Il2CppInspector.Reflection {
|
||||
(IsPointer? "void *" : "")
|
||||
+ Namespace
|
||||
+ (Namespace.Length > 0? "." : "")
|
||||
+ (DeclaringType != null? DeclaringType.Name + "." : "")
|
||||
+ (DeclaringType != null? DeclaringType.Name + "+" : "")
|
||||
+ base.Name
|
||||
+ (GenericTypeParameters != null ? "[" + string.Join(",", GenericTypeParameters.Select(x => x.Name)) + "]" : "")
|
||||
+ (GenericTypeArguments != null ? "[" + string.Join(",", GenericTypeArguments.Select(x => x.Name)) + "]" : "")
|
||||
|
||||
Reference in New Issue
Block a user