I have a number it could be negative or positive but I simply want to return the positive value.
-4 -> 4 5 -> 5
I know I can do a sim
You can use Math.Abs like public static int Abs (int value);
Math.Abs
public static int Abs (int value);