Table of Contents

Method IsNullOrBetween

Namespace
MongoDB.Driver.Core.Misc
Assembly
MongoDB.Driver.Core.dll

IsNullOrBetween<T>(T?, T, T, string)

Ensures that the value of a parameter is null or is between a minimum and a maximum value.

public static T? IsNullOrBetween<T>(T? value, T min, T max, string paramName) where T : struct, IComparable<T>

Parameters

value T?

The value of the parameter.

min T

The minimum value.

max T

The maximum value.

paramName string

The name of the parameter.

Returns

T?

The value of the parameter.

Type Parameters

T

Type type of the value.