What is the difference between the static methods Int32.Min
and Int32.MinMagnitude
, that were introduced in .NET 7? Their signature and description is the same:
// Compares two values to compute which is lesser.
public static int Min (int x, int y);
// Compares two values to compute which is lesser.
public static int MinMagnitude (int x, int y);
MinMagnitude()
compares the absolute values of the inputs. Whenx
andy
are positive, it works exactly likeMin()
. If either or both of them are negative then the sign(s) will be ignored for the comparison, but are kept on the return value.Some examples:
One special case is when comparing numbers of equal absolute value, but different sign. Then it returns the negative of the common absolute value:
Have a look at the source code here.