mirror of
https://github.com/MadMin3r/UnconfuserEx
synced 2026-06-23 09:25:19 +00:00
16 lines
336 B
C#
16 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MSILEmulator
|
|
{
|
|
public class Context
|
|
{
|
|
public Dictionary<int, object> Args = new();
|
|
public Dictionary<int, object> Locals = new();
|
|
public Stack<object> Stack = new();
|
|
}
|
|
}
|