Assembly and C#?

  • Thread starter Thread starter Andre
  • Start date Start date
A

Andre

Just wondering.. since we can have C modules being called in from C#...
can we then make assembly (x86 assembly) calls from C#? If so, can
someone please give me an example of how that's possible? Thanks

-Andre
 
As long as your assembly functions use the C calling convention, you can use
assembly dll's just as you use windows API calls, with the DllImport. But if
the assembly functions use different calling conventions, I wouldn't think
this would be possible.

Chris
 
Back
Top