views:

56

answers:

1

I want to create a C++ library. I want its API functions to be accessible from .net (C#). I will have a lot of unmanaged code that is compilable under clr. Where can I get a tutorial on creating such library\sln?

A: 

The Code Project is a website that tackles topics like this in a tutorial style. I didn't do an exhaustive search, but did find this article that talks about interop between C# and C++.

Matt Davis