托管CLR - 错误的参数

时间:2008-12-02 19:11:48

标签: c++ clr clr-hosting

我正在尝试在我的C ++应用程序中托管CLR,并且在调用托管应用程序的入口点时遇到问题。 入口点通常定义为:

static void Main(string[] args)

这是实际的C ++代码:

CComPtr<_MethodInfo> entryPoint;
hr = assembly->get_EntryPoint(&entryPoint); // this works just fine

if (FAILED(hr))
    return hr;

SAFEARRAY *args = 
    SafeArrayCreateVector(VT_VARIANT, 1, 1); // create an array of the length of 1 ( Main(string[]) )

int     argc;
LPWSTR  cmdLine     = GetCommandLineW();
LPWSTR  *argv       = CommandLineToArgvW(cmdLine, &argc); // get an array of arguments to this function

VARIANT vtPsa;
vtPsa.vt         = (VT_ARRAY | VT_BSTR);
vtPsa.parray     = SafeArrayCreateVector(VT_BSTR, 1, argc); // create an array of strings


for (long i = 0; i < argc; i++)
{      
  SafeArrayPutElement(vtPsa.parray, &i, SysAllocString(argv[i])); // insert the string from argv[i] into the safearray
}   

long idx[1] = {0};
SafeArrayPutElement(args, idx, &vtPsa); // insert an array of BSTR into the VT_VARIANT args array

VARIANT obj, result;
VariantInit(&obj);
VariantInit(&result);

try
{
    hr = entryPoint->Invoke_3(obj, args, &result); // call the entry point
}
catch(_com_error ex)
{
    MessageBox(NULL, ex.ErrorMessage(), "Error", 0);
}

if(FAILED(hr))
{
    hr = hr; // added just so I can set a breakpoint
}

我得到的错误代码是-2146233032,根据corerror.h对应于:

  

表示小数-2146233032 / hex   0x80131538:
  COR_E_SAFEARRAYRANKMISMATCH
  两者之间发生了不匹配   数组的运行时排名和排名   记录在元数据中。

有人能看到问题吗?

1 个答案:

答案 0 :(得分:3)

两种情况下,SafeArrayCreateVector的第二个参数不应为0吗? MSDN将该值列为“数组的下限。可以是负数。”