Can C# .net be used to create a win32 dll. If possible can someone tell me how to do it?
+1
A:
AFAIK, it's not possible to write unmanaged code in C#. You're stuck with C/C++.
You can, however, write COM components in C# that can be called from any Windows application.
Philippe Leybaert
2009-07-23 06:56:45
+1
A:
No way, C# code will be converted to IL which will be run in the CLR. So you can not make a native win32 dll using C#.
srnayak
2009-07-23 07:06:38