I'm developing a program using C# for my University project, I've gotten up to the point where I need to interact with some .dll files which are developed in C++, I've tracked down the necessary functions and now need to figure out how to implement them into my project, like execute the function with a button.
An example of the code in question:
long CALLBACK CDRconfigure(void)
{
return 0;
}
Can someone point me in the right direction with easy-to-understand knowledge/tutorials?
Question
3rdDin8
I'm developing a program using C# for my University project, I've gotten up to the point where I need to interact with some .dll files which are developed in C++, I've tracked down the necessary functions and now need to figure out how to implement them into my project, like execute the function with a button.
An example of the code in question:
long CALLBACK CDRconfigure(void) { return 0; }Can someone point me in the right direction with easy-to-understand knowledge/tutorials?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts