2025-04-22 08:58:00 +08:00
|
|
|
|
using dnlib.DotNet;
|
|
|
|
|
using dnlib.DotNet.Emit;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Obfuz.Virtualization
|
2025-04-20 14:23:40 +08:00
|
|
|
|
{
|
|
|
|
|
public class CompileContext
|
|
|
|
|
{
|
2025-04-22 08:58:00 +08:00
|
|
|
|
public MethodDef method;
|
|
|
|
|
public List<Instruction> obfuscatedInstructions;
|
2025-04-20 14:23:40 +08:00
|
|
|
|
}
|
|
|
|
|
}
|