RandomExtensionsSampleSByte Method
Returns a random
SByte that can have any value.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
[CLSCompliantAttribute(false)]
public static sbyte SampleSByte(
this Random random
)
<ExtensionAttribute>
<CLSCompliantAttribute(false)>
Public Shared Function SampleSByte (
random As Random
) As SByte
public:
[ExtensionAttribute]
[CLSCompliantAttribute(false)]
static signed char SampleSByte(
Random^ random
)
[<ExtensionAttribute>]
[<CLSCompliantAttribute(false)>]
static member SampleSByte :
random : Random -> sbyte
- random Random
- The Random instance to use.
SByteAn 8-bit signed integer that is greater than or equal to
SByte.MinValue and less than or equal to
SByte.MaxValue.In Visual Basic and C#, you can call this method as an instance method on any object of type
Random. 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).