Pchp.Library.PhpMath.max C# (CSharp) Метод

max() публичный статический Метод

Find highest value. If the first and only parameter is an array, max() returns the highest value in that array. If at least two parameters are provided, max() returns the biggest of these values.
public static max ( ) : PhpValue
Результат Pchp.Core.PhpValue
		public static PhpValue max(params PhpValue[] numbers)
        {
            return GetExtreme(numbers, true);
        }

Same methods

PhpMath::max ( PhpArray array ) : PhpValue
PhpMath::max ( long a, long b ) : long