calling C program

fkheng

Centurion
Joined
May 8, 2003
Messages
155
Location
Malaysia
is it possible to execute or call a program written in C by a program written in .NET and data to be shared between these 2 programs?
 
You can call functions in a c dll using platform invoke, the same way you call Windows APIs. There are samples in the SDK of doing this in the samples/technologies/interop/platforminfoke directory.
 
Back
Top