Hi All, I have a function in C++ dll like
FunctionCPP(int s)
{
}
I have a function in C# application(exe) like
int FunctionCSharp(int s)
{
return s;
}
what is the procedure to call FunctionCSharp from FunctionCPP? Any help will be appriciated. Thanks
G.Paulraj