摘要: .Net调用其他语言写的dll 不过要知道方法名和参数列表class Card { [DllImport("hdr__wc.DLL",SetLastError=true)] public static extern int init_com(int init); [DllImport("hdr__wc.DLL",SetLastError=true)] public static extern int sele_card( int m); }Card.init_com(0); 阅读全文
posted @ 2013-11-27 14:29 live in finally 阅读(344) 评论(0) 推荐(0) 编辑