I have an enumerated type that I would like to define the >, <, >=, and <= operators for. I know that these o
>
<
>=
<=
As Mehrdad says, you can't do that on the enum itself. You could however make a couple of extension methods that work on your enum. That will make it look like methods on the enum.
static bool IsLessThan(this SizeType first, SizeType second) { }