CBigInt
Attempts to convert a value to a valid BigInteger instance.
Public Function CBigInt(
ByRef Value As Variant ) As BigInteger
Parameters
- Value
-
[ByRef]
Variant.
The value to be converted to BigInteger.
Return Values
BigInteger - A new BigInteger instance representing the converted value.
Remarks
The follow types are supported:
- String
- Int64
- Long
- Integer
- Byte
- Double
- Single
- Currency
- Decimal
- Byte Array
- BigInteger
- Nothing
Dim b As BigInteger
Set b = CBigInt(12345)
See Also
Project CorLib Overview
Class Conversion Overview