2

我有一个 UInt32 值,我想使用 InterOpServices 传递给外部 dll。

非托管代码的原型是:

[DllImport("svr.dll")]
public static extern UInt32  CreateTag (
    [MarshalAs(UnmanagedType.LPStr)] String Name,
    Object Value,
    UInt16 InitialQuality,
    bool IsWritable);

调用代码是:

int myValue = Convert.ToInt32(item); //How to marshal as I8 type
tagNumber = (UInt32)svr_DLL.CreateTag(
    DeviceName + "." + el.tagName,
    myValue, // <-- this argument
    192,
    Convert.ToBoolean(el.tagEditable));

我想作为 I8 类型传递给对象值“myValue”。

如何才能做到这一点?

4

2 回答 2

6

您需要在参数声明中指定:[MarshalAs(UnmanagedType.I8)]

于 2012-02-20T18:09:08.747 回答
1

UnmanagedType 是一个枚举,所以你可以试试 Enum.Parse 方法:

string value = "9";
UnmanagedType i8 = (UnmanagedType)Enum.Parse(typeof(UnmanagedType), value);

希望这对你有帮助。

于 2012-02-21T05:12:22.877 回答