mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-18 17:17:52 +08:00
Better number ToString formatting, cleanups
This commit is contained in:
@ -374,15 +374,16 @@ namespace UnityExplorer
|
||||
|
||||
var sig = methodName;
|
||||
|
||||
// If the signature could be ambiguous (internally, within UnityExplorer's own use)
|
||||
// then append the arguments to the key.
|
||||
// Currently not needed and not used, but just in case I need it one day.
|
||||
if (cacheAmbiguous)
|
||||
{
|
||||
sig += "|";
|
||||
foreach (var arg in argumentTypes)
|
||||
sig += arg.FullName + ",";
|
||||
}
|
||||
else
|
||||
{
|
||||
sig += "|" + (argumentTypes?.Length.ToString() ?? "null");
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user