call functions froma C dll

  • Thread starter Thread starter Buddy Ackerman
  • Start date Start date
B

Buddy Ackerman

Is it possible to do this in .NET? I know you can use COM objects in .NET
but I haven't found anything on calling functions from a DLL like you used
to be able to do in VB.


--Buddy
 
Yes, it is, the syntax should be pretty close in VB.NET as it was in vb6(I'm
not sure). For C# you would use the DllImportAttribute. Look it up in msdn
for samples and other information.
 
Back
Top