EnsureIsGreaterThanOrEqualToT Method |
Ensures that the value of a parameter is greater than or equal to a comparand.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static T IsGreaterThanOrEqualTo<T>(
T value,
T comparand,
string paramName
)
where T : Object, IComparable<T>
Public Shared Function IsGreaterThanOrEqualTo(Of T As {Object, IComparable(Of T)}) (
value As T,
comparand As T,
paramName As String
) As T
static member IsGreaterThanOrEqualTo :
value : 'T *
comparand : 'T *
paramName : string -> 'T when 'T : Object and IComparable<'T>
Parameters
- value
- Type: T
The value of the parameter. - comparand
- Type: T
The comparand. - paramName
- Type: SystemString
The name of the parameter.
Type Parameters
- T
- Type type of the value.
Return Value
Type:
TThe value of the parameter.
See Also