I get a string from a 3rd party SW with a long type qualifier, e.g. "1L". I want to parse this to an Int64, but Int64.TryParse does not recognize this as an Int64. Is there a .NET method that does this safely? I want to avoid parsing myself...
Thanks for any help!