| Int64TypeHelperValue Method |
Adds a chunk of one numeric value
Namespace:
SmartTests.Ranges
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public static INumericType<long> Value(
this long _,
long value
)
<ExtensionAttribute>
Public Shared Function Value (
_ As Long,
value As Long
) As INumericType(Of Long)
public:
[ExtensionAttribute]
static INumericType<long long>^ Value(
long long _,
long long value
)
[<ExtensionAttribute>]
static member Value :
_ : int64 *
value : int64 -> INumericType<int64>
Parameters
- _
- Type: SystemInt64
A long we do not care about, except to know to create a INumericTypeT for long. - value
- Type: SystemInt64
A random value within _ range.
Return Value
Type:
INumericTypeInt64Return a new
INumericTypeT for long 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
Int64. 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