Table of Contents

Class Range<T>

Namespace
MudBlazor
Assembly
MudBlazor.dll

A range of values.

public class Range<T>

Type Parameters

T

The type of value for the range.

Inheritance
Range<T>
Derived
Inherited Members
Extension Methods

Constructors

Range()

Creates a new instance.

public Range()

Range(T, T)

Creates a new instance.

public Range(T start, T end)

Parameters

start T

The minimum value.

end T

The maximum value.

Properties

End

The maximum value.

public T? End { get; set; }

Property Value

T

Start

The minimum value.

public T? Start { get; set; }

Property Value

T

Methods

Equals(object?)

public override bool Equals(object? obj)

Parameters

obj object

Returns

bool

GetHashCode()

public override int GetHashCode()

Returns

int