I have an extension class for System.Net.IPAddress and I was wanting to overload the binary operators >, <, ==
but the compiler is telling me that I can't overload those operators inside a static class, which I must have for my other extension methods. Is there a particular reason for this?
Thanks.