Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can any one tell me difference between Win 32 handles used in MFC programming and Handles used in Managed C++ (C++/CLI)?
Posted

1 solution

You should buy a good book, especially if you want to learn Managed C++. A handle in C++/CLI is probably the handle that's used to identify a managed object, which can move in memory. A Win32 handle is similar, in that it's an id used to identify an object, but Win32 is never going to move your object in memory, or clean it up.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900