Let's say I'd like to add an extension method called IsOdd() to the number datatypes in .NET. The implementation of this, however, will be virtually the same for the datatypes like Int16, Int32, Int64, etc., except for the parameter being defined for the extension method. I really don't like this redundancy but wonder if there's no way to avoid it.
Is there a better way to handle this? Should I instead, say, implement an extension method for System.Math and create overloaded definitions for IsOdd()? In short, I'm curious if extension methods for the number datatypes should generally be avoided altogether, due to their inherent redundancy.
IsOddall that often. It would be cluttering them up. – Servy Jun 26 '12 at 13:49MyMath.IsOdd(x)– Jamie Treworgy Jun 26 '12 at 13:52