Win32 DLL with C#

  • Thread starter Thread starter AA2e72E
  • Start date Start date
A

AA2e72E

- Is it possible to create a Win32 DLL using C#?
- Are there any tools for converting C# DLLs (managed or Interop) into Win32
DLLs?

Thanks for any insights.
 
Hi,
- Is it possible to create a Win32 DLL using C#?
No

- Are there any tools for converting C# DLLs (managed or Interop) into
Win32
DLLs?

Don't know but unlikely as the programming model is quite different. In
both cases I assume you meant a Win32 DLL with exported functions.

Also you may want to be a bit more specific about what you are trying to do.
In particular you could expose .NET classes as COM classes which should be
usable by most dev tools
(http://msdn.microsoft.com/en-us/library/tzat5yw6(VS.71).aspx).
 
Back
Top