"tshad" <tscheiderich@f tsolutions.comw rote in message
news:O2HXVrJ9GH A.4476@TK2MSFTN GP04.phx.gbl...
|I have a program in C# that needs to access a couple of C++ dlls and libs.
|
| Can this be done?
|
| Thanks,
|
| Tom
|
|
You can only call functions exported by DLL's, C# (and all other .NET
languages) cannot bind to libs.
Note also that with "exports" I mean C style exported functions. Search the
docs for PInvoke interop for more details.
Comment