Hello,
I am migrating code from the old Managed Syntax to the new C++/CLI syntax. To do this transformation I followed the hints explained in several articles of the MSDN.
But what I didn't find there is how to convert the __try_cast operator when the type being casted is unmanaged.
Does I have to use dynamic_cast and append an assertion Or there is a special operator like safe_cast but for unmanaged types
Thank you in advance.