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