C++/CLI : Casting from unmanaged enum to managed enum

Viewed 23740

What is the correct way of casting (in C++/CLI) from a native code enum to a managed code enum which contain the same enum values? Is there any difference with using the C# way of casting like for example (int) in C++/CLI.

2 Answers
Related