public static T1 AltAdd <T1, T2>(T1 value1, T2 value2) { return(MathGeneric <T2, T1> .Add(value1, value2)); }
public static T Add <T>(T value1, T value2) { return(MathGeneric <T> .Add(value1, value2)); }