Hi I've created a C++ DLL which I import to C# application to re-use a function.
the function code in C++ is static bool IsSomethingAttached(char *Arg1[])
When I use DllImport as below in C# program, [DllImport("DllName")] I get the error as EntryPointNotFound exception.
I used
**DumpBin /symbols Dllname.dll**
for getting the mangled name.
1) But I do not know how to exactly get the mangled name. Few posts say we should use /exports but /exports
instead of /symbols
just give the summary and I do not get mangled name. Pl help
2) How to use undname.exe to get the decorated name from undecorated name?