Is there safe_cast in the standard c++?

c++, visual-c++

Solution

safe_cast is used in C++/CLI. There is no such standard construction in C++.

Problem

It looks like there is a safe_cast in the visual c++, which looks similar to dynamic_cast. I am wondering if safe_cast is in the standard c++?

Original source