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

Checks whether CompareTo method exists in the 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_compareto_via_dot< T, Sfinae >

Checks whether CompareTo method exists in the 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 CompareTo method existance.
SfinaeFormal template argument for SFINAE to work.