Search code examples
c#aho-corasickmanaged-cuda

How to spawn process C++ from C#?


I've a library in C++ to run a string matching (PFAC library)PFAC-lib. How do i run this library from WinForm C#?

I also used managedCuda to run cuda code from my C#. Any idea?


Solution

  • "PFAC library provides C-style API. Programmers can link the library to C/C++ code or other language."

    You should be able to dllimport the parts you need for the code to work.

    but you might have a hard time as i just looked at the struct create needs. good luck