本文介绍了问题没有在C#中运行我的应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

代码是正确的但是当我点击开始调试时没有运行我的应用程序

in visual c#2017

给我这个错误

the code is correct but not run my application when i click to start for debug
in visual c# 2017
give me this error

Il programma '[13020] MyHome.exe' è terminato con il codice -1073741819 (0xc0000005) 'Access violation'.
the software MyHome.exe is terminated with the code

What I have tried:

i try format my computer and reinstall all
for the first moment run correctly
but now not run

推荐答案

 VlcContext.LibVlcDllsPath = CommonStrings.LIBVLC_DLLS_PATH_DEFAULT_VALUE_AMD64;
VlcContext.LibVlcPluginsPath =CommonStrings.PLUGINS_PATH_DEFAULT_VALUE_AMD64;
            VlcContext.StartupOptions.IgnoreConfig = true;
            VlcContext.StartupOptions.LogOptions.LogInFile = false;
             VlcContext.StartupOptions.LogOptions.ShowLoggerConsole = false;
           VlcContext.StartupOptions.LogOptions.Verbosity = VlcLogVerbosities.Debug;
             VlcContext.CloseAll();
            VlcContext.Initialize();



我已解决删除此代码


i resolved delete this code


这篇关于问题没有在C#中运行我的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-09 21:43