[Mono-list] a bit OT: DLL to Assembly

Miguel de Icaza miguel@ximian.com
04 Sep 2001 13:18:23 -0400


> is there a way to transform an ordinary C DLL into an assembly ?
> or to include it into an assembly ?

You can call C code that lives in a DLL by using PInvoke, something
liket his:

class Math {
[Dllimport("libc")]
static double sin (double x)
}