vote up 1 vote down star

I want to create a generic class that takes a type parameter and restrict that parameter to numeric types or more generally to any type upon which the increment operator ++ can be applied.

I know I can do the following to restrict to structs but obviously there are structs that aren't numeric types and for which the ++ operator is not supported. Can I do this in C#

class Example<T> where T : struct
{
  //Implementation detail
}
flag

This is a frequently requested feature. Implementing it would require changes to both the language and the runtime. It's a possibility for hypothetical future versions, but unlikely to be our highest priority. – Eric Lippert Jul 17 at 13:54

1 Answer

vote up 3 vote down check

Unfortunately this is not possible (see here.) You can only constrain the type to:

  • Implement a specific interface or derive from a specific class
  • Be a class or struct
  • Have a parameterless constructor

Constraining types to have specific operators is a much-requested feature but I believe it will not be in C# 4 either.

link|flag

Your Answer

Get an OpenID
or

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