here's is my enum declaration
enum suit
{
greater_than = ">",
Less_than = "<",
greater_than_or_equal_to = ">=",
less_than_or_equal_to = "<=",
}
and i'm trying to do it like this but no luck.
int zero = 0;
if(zero suit.greater_than_or_equal_to 1)
{
}
is there an other way it do it in a word
not in like this ">="
?