tags:

views:

82

answers:

3

Possible Duplicate:
How do I call unmanaged C/C++ code from a C# ASP.NET webpage

is there a way to link the two?

+5  A: 

P/Invoke is the approach you want

plinth
+2  A: 

Search for PInvoke in C# you will find plenty of resources. Like this one:

http://msdn.microsoft.com/en-us/magazine/cc164123.aspx

PeterTheNiceGuy
+2  A: 

Yes, PInvoke is the way. This site/wiki will be a great help likely.

kenny