>FromYourCode();

Source code quote in C#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;
}

Check similar quotes

Share this quote