暂时对泛型禁用控制流混淆

main
walon 2025-08-12 14:19:32 +08:00
parent c3c53b2797
commit 2576236960
1 changed files with 4 additions and 0 deletions

View File

@ -918,6 +918,10 @@ namespace Obfuz.ObfusPasses.ControlFlowObfus
//{
// return false;
//}
if (_method.HasGenericParameters || _method.DeclaringType.HasGenericParameters)
{
return false;
}
var evc = new EvalStackCalculator(_method);
BuildBasicBlockLink(evc);
if (!CheckNotContainsNotSupportedEvalStackData())