简体   繁体   中英

How can I call a C++ function from C#?

如何从C#.NET调用C ++函数?

  1. compile the C++ function into a dll and use P/Invoke

    or

  2. compile the C++ function into a C++/CLI assembly, wrap in a managed C++ class, and then treat like any other assembly (add a reference, use a using statement and call the class)

Or

Create a COM wrapper and then reference it from .NET

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM