Assembly.ToString() and MemberInfo.ToString()

This commit is contained in:
Katy Coe
2017-11-08 00:30:53 +01:00
parent 138c2cec48
commit 52eea8395f
2 changed files with 4 additions and 0 deletions

View File

@@ -44,5 +44,7 @@ namespace Il2CppInspector.Reflection {
for (var t = Definition.typeStart; t < Definition.typeStart + Definition.typeCount; t++)
DefinedTypes.Add(new TypeInfo(Model.Package, t, this));
}
public override string ToString() => FullName;
}
}

View File

@@ -40,5 +40,7 @@ namespace Il2CppInspector.Reflection {
DeclaringType = declaringType;
}
}
public override string ToString() => Name;
}
}