Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# numeric base class [duplicate]

I want to write a C# method that can accept any number. Something like:

public static T Sum(T a, T b) where T : number {  // (not real code)
    return a + b;
}

But I don't see a "number" base class in C#, as exists in most other languages I've used. The numeric value types are IComparable, IFormattable, IConvertible, IComparable, and IEquatable, but nothing that seems to have any arithmetic capabilities. They're all structs, with no apparent common superclass, apart from object. (Forgive me if I'm screwing up the meaning here, since I'm not too familiar with C# structs and precisely all the ways they are like or unlike classes.)

Am I missing something, or is it not possible to write a method in C# that does "a + b" without declaring exactly what a and b are in the context of the "+"?

like image 879
Ken Avatar asked Sep 03 '09 18:09

Ken


3 Answers

You will have to resort to using overloading. A little like the Math class is doing with function like Math.Max where it support all numeric types.

The link proposed by CD is also resourceful.

like image 166
Pierre-Alain Vigeant Avatar answered Nov 10 '22 19:11

Pierre-Alain Vigeant


See this SO question for similar discussion.

Also, you can do this (with some tedious effort) if you're willing to create separate Types for each of the .Net core number types you want to use it for...

Create two structs, called say, MyInt, and MyDecimal which act as facades to the CTS Int32, and Decimal core types (They contain an internal field of that respective type.) Each should have a ctor that takes an instance of the Core CTS type as input parameter..

Make each one implement an empty interface called INumeric

Then, in your generic methods, make the constraint based upon this interface. Downside, everywhere you want to use these methods you have to construct an instance of the appropriate custom type instead of the Core CTS type, and pass the custom type to the method.

NOTE: coding the custom structs to properly emulate all the behavior of the core CTS types is the tedious part... You have to implement several built-in CLR interfaces (IComparable, etc.) and overload all the arithmetic, and boolean operators...

like image 20
Charles Bretana Avatar answered Nov 10 '22 19:11

Charles Bretana


Unfortunately, no such class/interface exists.

like image 23
C. Ross Avatar answered Nov 10 '22 20:11

C. Ross