UtilitiesTryHexParse Method |
Try parsing the string for a Hex-formatted int. If it fails, return false and 0 in iOutput.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static bool TryHexParse(
string sInput,
out int iOutput
)
Public Shared Function TryHexParse (
sInput As String,
<OutAttribute> ByRef iOutput As Integer
) As Boolean
public:
static bool TryHexParse(
String^ sInput,
[OutAttribute] int% iOutput
)
Parameters
- sInput
- Type: SystemString
The hex number - iOutput
- Type: SystemInt32
The int value
Return Value
Type:
BooleanTRUE if the parsing succeeded
See Also