private bool Emulator_OnExternalCall(FacelessAssembly sender, IMethodDefOrRef method, object[] args)
 {
     return(OnExternalCall?.Invoke(this, method, args) ?? true);
 }
Пример #2
0
 public bool ShouldCallExternal(IMethodDefOrRef method, object[] args)
 {
     return(OnExternalCall?.Invoke(null, method, args) ?? true);
 }