Is Win32 API support C++ managed extension?
If it doesn't support c++ managed extension,then how complex will it be to turn existing projcts into c++ managed extension,or what a pity that we couldn't easily use Win32 API in new project to support .net frame because Win32 API is really a huge helpful resource.
# 2 Re: Is Win32 API support C++ managed extension?
kuphryn,I just want my C++ component to be used in other .net languages like C# or VB.net.The C++ component is required to managed,but I am not sure whether I can embedded win32 API in my c++ component to be managed.
# 4 Re: Is Win32 API support C++ managed extension?
COM has some shortcoming,like redundant code,unconvenient type conversion.So I want to use .net framework's interoperatility on .net.
The word "managed" I refer to is meaning C++ managed extensions to make c++ managed code that supports .net and its interoperatibility.
Yao Liwei
# 5 Re: Is Win32 API support C++ managed extension?
You can mix both managed and unmanaged class in a C++ project. You can make a managed class that will be used by VB/C# but inside that class, it will call the unmanaged functions or class which in turn will call the win32 API.
Hope it will help you
# 6 Re: Is Win32 API support C++ managed extension?
rxbagain,your answer is really what I want to confirm,thank you very much.