Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/277.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 来自vMenu的控制台消息是什么_C#_Fivem - Fatal编程技术网

C# 来自vMenu的控制台消息是什么

C# 来自vMenu的控制台消息是什么,c#,fivem,C#,Fivem,我的控制台有个错误是从哪里来的? 有人知道这是什么吗 调用事件播放机连接的回调时出错:System.Reflection.TargetInvocationException:调用的目标已引发异常。-->System.MissingMethodException:未找到方法:int CitizenFX.Core.Native.API.StartFindKvp(字符串) 在vMenuServer.BanManager.CheckForBans(CitizenFX.Core.Player源、Syste

我的控制台有个错误是从哪里来的? 有人知道这是什么吗

调用事件播放机连接的回调时出错:System.Reflection.TargetInvocationException:调用的目标已引发异常。-->System.MissingMethodException:未找到方法:int CitizenFX.Core.Native.API.StartFindKvp(字符串) 在vMenuServer.BanManager.CheckForBans(CitizenFX.Core.Player源、System.String playerName、CitizenFX.Core.CallbackDelegate kickCallback)[0x0000d]中:0 位于(包装器管理为本机)System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) 在System.Reflection.RuntimeMethodInfo.Invoke(System.Object obj、System.Reflection.BindingFlags invokeAttr、System.Reflection.Binder Binder、System.Object[]参数、System.Globalization.CultureInfo culture)[0x0006a]中:0 例外情况\u EndofinerExceptionsTack 在System.Reflection.RuntimeMethodInfo.Invoke(System.Object obj、System.Reflection.BindingFlags invokeAttr、System.Reflection.Binder Binder、System.Object[]参数、System.Globalization.CultureInfo culture)[0x00083]中:0 在System.Reflection.MethodBase.Invoke(System.Object obj,System.Object[]参数)[0x00000]中:0 在0中的System.Delegate.DynamicInvokeImpl(System.Object[]args)[0x000e7]处 位于:0中的System.MulticastDelegate.DynamicInvokeImpl(System.Object[]args)[0x00008]处 在0中的System.Delegate.DynamicInvoke(System.Object[]args)[0x00000]处 在C:\gl\builds\4ff63adb\0\cfx\fivem\code\client\clrcore\EventHandlerDictionary.cs中的CitizenFX.Core.EventHandlerEntry.Invoke(System.String sourceString,System.Object[]args)[0x00064]处


看起来
vMenu
正在使用反射来调用某个函数

反射可以引发这样的运行时异常,原因有两个

  • 没有引用的程序集包含所述函数
  • 程序集存在,但版本错误,不包含所需的功能或特定重载
您应该尝试使用其他版本并重新安装(最好尝试其他版本)

否则,在作者的github上启动一个bug以获得建议和/或修复