Returns the absolute value of the specified number.
Returns the absolute value of an integer.
[Visual Basic] Overloads Public Shared Function Abs(Long) As Long
[C#] public static long Abs(long);
[C++] public: static __int64 Abs(__int64);
[JScript] public static function Abs(long) : long;
Returns the absolute value of an integer.
[Visual Basic] Overloads Public Shared Function Abs(Integer) As Integer
[C#] public static int Abs(int);
[C++] public: static int Abs(int);
[JScript] public static function Abs(int) : int;
Returns the absolute value of an integer.
[Visual Basic] Overloads Public Shared Function Abs(Integer) As Short
[C#] public static short Abs(short);
[C++] public: static short Abs(short);
[JScript] public static function Abs(Int16) : Int16;
[To be supplied.]
[Visual Basic] Overloads Public Shared Function Abs(Single) As Single
[C#] public static float Abs(float);
[C++] public: static float Abs(float);
[JScript] public static function Abs(float) : float;
[To be supplied.]
[Visual Basic] Overloads Public Shared Function Abs(Double) As Double
[C#] public static double Abs(double);
[C++] public: static double Abs(double);
[JScript] public static function Abs(double) : double;
Returns the absolute value of an integer.
[Visual Basic] Overloads Public Shared Function Abs(SByte) As SByte
[C#] public static sbyte Abs(sbyte);
[C++] public: static char Abs(char);
[JScript] public static function Abs(SByte) : SByte;