Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static method: T Max<T>(params T[])

  • Declared in: RT.Util.Ut

Declaration

public static T Max<T>(
    params T[] args
)

Summary

Returns the largest of all arguments passed in. Uses the Linq .Max extension method to do the work.

Generic type parameters

T
  • Must derive from: System.IComparable<T>.
This type parameter is not documented.