System::Equals method

System::Equals method

Determines the equality of two values applying operator==() to them.

template<typename TA,typename TB> bool System::Equals(const TA &a, const TB &b)
ParameterDescription
TAThe type of the first comparand
TBThe type of the second comparand
ParameterTypeDescription
aconst TA&The first comparand
bconst TB&The second comparand

ReturnValue

The boolean value returned by operator==() applied to a and b

See Also