修复 MetaUtil::AppendIl2CppStackTraceNameOfTypeSig 无法处理TypedReference类型的bug

before-split
walon 2025-05-23 19:46:44 +08:00
parent 03b0172240
commit 28e276eda5
1 changed files with 1 additions and 0 deletions

View File

@ -750,6 +750,7 @@ namespace Obfuz.Utils
sb.Append("]"); sb.Append("]");
break; break;
} }
case ElementType.TypedByRef: sb.Append("TypedReference"); break;
default: default:
throw new NotSupportedException(typeSig.ToString()); throw new NotSupportedException(typeSig.ToString());
} }