本文介绍了访问语音异常未处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

[DllImport("ABCD.dll")]
       public static extern void CI_CompileProgram([MarshalAs(UnmanagedType.LPWStr)]String xmlFile, [MarshalAs(UnmanagedType.LPWStr)]String wsSavePath);


path = "C:\\Program Files\\DIGISPORT\\first.xml";
                path2 = "C:\\Program Files\\DIGISPORT\\";
                          CI_CompileProgram(path, path2);





当控制命中CI_CompileProgram(path,path2);发生异常......我在谷歌上找不到任何解决方案...任何帮助都将不胜感激..

谢谢,



As control hits CI_CompileProgram(path,path2); Exception occurs... I couldn''t find any solution on google... Any help would be appreciated ..
Thank you,

推荐答案


这篇关于访问语音异常未处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 06:54