Table of Contents

Class MedianAverage<T>

Namespace
SunamoNumbers._public.SunamoData
Assembly
SunamoNumbers.dll

Holds median and average statistical values for a collection.

public class MedianAverage<T>

Type Parameters

T

The numeric type of the values.

Inheritance
MedianAverage<T>
Inherited Members
Extension Methods

Properties

AverageValue

Gets or sets the average value.

public T AverageValue { get; set; }

Property Value

T

ElementCount

Gets or sets the element count.

public int ElementCount { get; set; }

Property Value

int

MaximumValue

Gets or sets the maximum value.

public T MaximumValue { get; set; }

Property Value

T

MedianValue

Gets or sets the median value.

public T MedianValue { get; set; }

Property Value

T

MinimumValue

Gets or sets the minimum value.

public T MinimumValue { get; set; }

Property Value

T

Methods

ToString()

Returns a formatted string representation of the statistical values.

public override string ToString()

Returns

string