C#调用rust编写的dll
摘要:
通过 cargo new --lib add 创建 rust 库项目 lib.rs #[no_mangle] pub extern fn add(a: i32, b: i32) -> i32 { a + b } cargo.toml 增加 dll 配置 [lib]name="addlist"crat 阅读全文
posted @ 2020-02-19 11:26 阿水 阅读(236) 评论(1) 推荐(0) 编辑