6

我正在使用 DLLImport 从 C# 应用程序调用 GhostScript 库。

所以我有一些这样的代码,

[DllImport("gsdll32.dll", EntryPoint = "gsapi_init_with_args")]
private static extern int gsapi_init_with_args(IntPtr instance, int argc, IntPtr argv);

try 
{ 
    intReturn = gsapi_init_with_args(intGSInstanceHandle, intElementCount, intptrArgs); 
}
catch (Exception ex)
{
    throw new ApplicationException(ex.Message, ex);
}

我将查看用 C 或 C++ 编写的 GhostScript 源代码,但总的来说,我想知道如果 GhostScript 代码抛出未处理的异常会发生什么?那会被那里的渔获物抓住吗,还是必须看起来像这样,

catch
{
    // blah
}
4

1 回答 1

1

它不会抛出异常,您应该查看返回码。 http://pages.cs.wisc.edu/~ghost/doc/AFPL/7.04/API.htm#return_codes

非常标准的 C 编程方法,错误返回非零代码,有时随后进行第二次 API 调用以检索错误的更多详细信息。

于 2012-04-18T05:15:14.117 回答