Tries to convert the string representation of a number to its System.Numerics.BigInteger
equivalent, and returns a value that indicates whether the conversion succeeded.
Namespace: Renci.SshNet.CommonAssembly: Renci.SshNet (in Renci.SshNet.dll) Version: 0.1.0.0 (1.0.0.0)
Syntax
public static bool TryParse( string value, out BigInteger result )
Parameters
- value
- Type:
System String
The string representation of a number.
- result
- Type: Renci.SshNet.Common BigInteger
When this method returns, contains the System.Numerics.BigInteger equivalent to the number that is contained in value, or zero (0) if the conversion fails. The conversion fails if the value parameter is null or is not of the correct format. This parameter is passed uninitialized.
Return Value
true if value was converted successfully; otherwise, false.See Also