Contribution guide Twitter Discord Telegram
Built with ❤︎ by NotAccursed
You can easily understand how to make a virtualization like Eazfuscator.
- Emulate IL Code
- Easy to add more functions
- Easy to understand
private static void Main(string[] args) {
List<Instruction> instruction = new List<Instruction>
{
new Instruction(OpCodesL.Ldc, 4),
new Instruction(OpCodesL.Ldc, 2),
new Instruction(OpCodesL.Add),
new Instruction(OpCodesL.Ret)
};
Core core = new Core(instruction);
Console.WriteLine(core.Execute());
Console.ReadLine();
}