BigIntegerExtensionsToBinaryString Method |
Converts current value of the BigInteger class to a binary string.
Namespace:
SysadminsLV.PKI.Utils.CLRExtensions
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public static string ToBinaryString(
this BigInteger bigint
)
<ExtensionAttribute>
Public Shared Function ToBinaryString (
bigint As BigInteger
) As String
public:
[ExtensionAttribute]
static String^ ToBinaryString(
BigInteger bigint
)
[<ExtensionAttribute>]
static member ToBinaryString :
bigint : BigInteger -> string
Parameters
- bigint
- Type: System.NumericsBigInteger
Current BigInteger object.
Return Value
Type:
StringBinary string.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
BigInteger. 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