当前位置: 代码迷 >> VB Dotnet >> pb代码转vb.net,该如何处理
  详细解决方案

pb代码转vb.net,该如何处理

热度:194   发布时间:2016-04-25 02:19:32.0
pb代码转vb.net
请高手以下代码转为vb.net,谢谢:

function boolean getParaByNameBlob(long whandler,string name, ref blob value) library "sieaf.dll" alias for "getParaByName"
------解决方案--------------------
  [DllImport("sieaf.dll", EntryPoint = "getParaByName")]
  public extern static bool getParaByNameBlob(long whandler, string name, ref byte[] value);
       
  相关解决方案