Unity3D 并口通讯以及 Dll import小结

1、和vs不同 C#直接

    [DllImport("inpoutx64", EntryPoint = "Out32")]
    public static extern void Output(int address, int value);

Unity3d的脚本中没有.dll !!!

2、笔者用的时候

image.png

据查有资料说明有在Plugins里面放x86 、x86_64文件夹来引用32bit / 64bit的dll的操作,暂时没去验证,感兴趣的自行测试。
于是转用inpoutx64.dll
运行不再出错。

你可能感兴趣的:(Unity3D 并口通讯以及 Dll import小结)