 | SByteTypeHelper.Range Method (SByte, SByte, Boolean, SByte, Boolean) |
Adds a chunk of numeric values
Namespace:
SmartTests.Ranges
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntaxpublic static INumericType<sbyte> Range(
this sbyte _,
sbyte min,
bool minIncluded,
sbyte max,
bool maxIncluded
)
<ExtensionAttribute>
Public Shared Function Range (
_ As SByte,
min As SByte,
minIncluded As Boolean,
max As SByte,
maxIncluded As Boolean
) As INumericType(Of SByte)
public:
[ExtensionAttribute]
static INumericType<signed char>^ Range(
signed char _,
signed char min,
bool minIncluded,
signed char max,
bool maxIncluded
)
[<ExtensionAttribute>]
static member Range :
_ : sbyte *
min : sbyte *
minIncluded : bool *
max : sbyte *
maxIncluded : bool -> INumericType<sbyte>
Parameters
- _
- Type: System.SByte
A sbyte we do not care about, except to know to create a INumericType<T> for sbyte. - min
- Type: System.SByte
The min value (included) of the chunk. - minIncluded
- Type: System.Boolean
true to include min, false otherwise. - max
- Type: System.SByte
The max value (included) of the chunk. - maxIncluded
- Type: System.Boolean
true to include max, false otherwise.
Return Value
Type:
INumericType<SByte>Return a new
INumericType<T> for sbyte so that adding chunks can be chained.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SByte. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also