public static bool TryParse(string s, out ContentRangeInfo value) { value = Empty; try { value = Parse(s); return true; } catch { return false; } }
public static bool TryParse(string s, out ContentRangeInfo value) { value = Empty; try { value = Parse(s); return(true); } catch { return(false); } }
static ContentRangeInfo() { Empty = new ContentRangeInfo(); }