Retrieve identifier names for debugging.

This commit is contained in:
2022-11-01 17:36:18 +08:00
parent 2c9be2ef1e
commit 324c887539
4 changed files with 7 additions and 7 deletions

View File

@@ -115,7 +115,7 @@ namespace Cryville.Common.Pdt {
return _hash;
}
public override string ToString() {
return string.Format("{0}({1})", Name, ParamCount);
return string.Format("{0}({1})", IdentifierManager.SharedInstance.Retrieve(Name), ParamCount);
}
}
}