BigIntegerStatic: TryParse

TryParse

Attemps to parse a string of characters of the specified base type.



 Public Function TryParse(
	  ByRef Value As String,
	  ByRef OutResult As BigInteger ) As Boolean

Parameters

Value
[ByRef] String. The string of characters to parse.
OutResult
[ByRef] BigInteger. The returning BigInteger object if the string was successfully parsed.

Return Values

Boolean -  True if the string was parsed, False otherwise.

Remarks

2 base types are supported for parsing; Decimal and Hex. The string must include a base type specifier for Hex. Decimal is the default.

Hex Prefix Specifiers: 0x, 0X, &H, &H

Parsing is not case sensitive.

See Also

Project CorLib Overview

Class BigIntegerStatic Overview