public override string ParseString(string strValue) { Clear(); string result = string.IsNullOrEmpty(strValue) ? string.Empty : GEDCOMUtils.ParseRangeDate(this, strValue); return(result); }
public override string ParseString(string strValue) { Clear(); string result; if (string.IsNullOrEmpty(strValue)) { result = string.Empty; } else { result = GEDCOMUtils.ParseRangeDate(GetTree(), this, strValue); } return(result); }