Struct ArrayExtrema
Represents the minimum and maximum values of a 2D array, and their corresponding locations.
public struct ArrayExtrema
- Inherited Members
Fields
MaxLocation
The zero-based index of the maximum value in the 2D array.
public Point MaxLocation
Field Value
MaxValue
The maximum value of the 2D array.
public double MaxValue
Field Value
MinLocation
The zero-based index of the minimum value in the 2D array.
public Point MinLocation
Field Value
MinValue
The minimum value of the 2D array.
public double MinValue
Field Value
Methods
ToString()
Returns the fully qualified type name of this instance.
public override string ToString()
Returns
- string
The fully qualified type name.