CodePorting.Translator.Cs2Cpp.Framework
System::detail::has_method_gethashcode< T, Sfinae > Struct Template Reference

Checks whether GetHashCode method exists in specified type. If so, inherits std::true_type, otherwise inherits std::false_type. Can be used in std::enable_if. More...

#include <detail.h>

Inherits std::false_type.

Detailed Description

template<typename T, typename Sfinae = void>
struct System::detail::has_method_gethashcode< T, Sfinae >

Checks whether GetHashCode method exists in specified type. If so, inherits std::true_type, otherwise inherits std::false_type. Can be used in std::enable_if.

Template Parameters
TType to check for GetHashCode method existance.
SfinaeFormal template argument for SFINAE to work.