private bool Emulator_OnExternalCall(FacelessAssembly sender, IMethodDefOrRef method, object[] args) { return(OnExternalCall?.Invoke(this, method, args) ?? true); }
public bool ShouldCallExternal(IMethodDefOrRef method, object[] args) { return(OnExternalCall?.Invoke(null, method, args) ?? true); }