I do not know how to use COM classes on wine lib,for example , System.dll wine dlls should be written by C,but I found many .Net methods equivalent to Win32 APIs. Isn't it good idea?
On 11/4/2013 13:52, 中川祥 wrote:
I do not know how to use COM classes on wine lib,for example , System.dll wine dlls should be written by C,but I found many .Net methods equivalent to Win32 APIs. Isn't it good idea?
If you mean using C# modules as COM classes implementation that will be used from native code instead of native COM classes with similar functionality then I think the answer is no.
C# classes in Mono are supposed to be wrappers around system functionality (in a system independent way in theory) as I understand that.