vote up 7 vote down star
1

What would I do if I want to have a generic method that only accepts types that have overloaded an operator, for instance the subtraction operator. I tried using an interface as a constraint but interfaces can't have operator overloading.

What is the best way to achieve this?

flag
Do you have an example of where you are trying to use this? I can't think of anywhere that would be useful? – Mitch Wheat Sep 29 '08 at 5:40
A generic "Sum" method would be a simple example. T Sum<T>(IEnumerable<T> sequence); // where T has '+' operator – blackwing Sep 29 '08 at 8:11

2 Answers

vote up 10 vote down check

There is no immediate answer; operators are static, and cannot be expressed in constraints - and the existing primatives don't implement any specific interface (contrast to IComparable[<T>] which can be used to emulate greater-than / less-than).

However; if you just want it to work, then in .NET 3.5 there are some options...

I have put together a library here that allows efficient and simple access to operators with generics - such as:

T result = Operator.Add(first, second); // implicit <T>; here

It can be downloaded as part of MiscUtil

Additionally, in C# 4.0, this becomes possible via dynamic:

static T Add<T>(T x, T y) {
    dynamic dx = x, dy = y;
    return dx + dy;
}

I also had (at one point) a .NET 2.0 version, but that is less tested. The other option is to create an interface such as

interface ICalc<T>
{
    T Add(T,T)() 
    T Subtract(T,T)()
}

etc, but then you need to pass an ICalc<T>; through all the methods, which gets messy.

link|flag
I like the ability to use dynamic in .NET 4.0, it sure makes things much easier. However, it's worth pointing out that there will be a performance implication on using it because it has to do more work at runtime. I'd be interested to know how much of an impact it has, it needs some benchmarking I think. – Martin Sherburn Jul 28 at 16:23
Benchmark already done; try the code from here: social.msdn.microsoft.com/Forums/en-US/… – Marc Gravell Jul 28 at 21:11
vote up 1 vote down

As you have found, it is simply not possible to define a static method on an interface, so you cannot use it as a constraint for your generic method.

Here is a somewhat complex workaround: http://www.codeproject.com/KB/cs/genericnumerics.aspx

If you are using .NET 3.5, this can also be accomplished via LINQ expression trees, as follows: http://rogeralsing.com/2008/02/27/linq-expressions-calculating-with-generics/

link|flag
Note that in Roger's blog we discuss/contrast the two implementations (they are very similar) - with the conclusion that the MiscUtil code (linked previously) is more developed. But they use the same fundamental approach. – Marc Gravell Sep 29 '08 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.