Source code quote in C#n° 250
9 May, 2016 at 01:30
private string HexToInt(string Value)
{
string str;
try
{
str = Value;
}
catch (Exception exception)
{
Trace.Log("Error with HexToInt :");
Trace.LogException(exception);
throw;
}
return str;
}