Example #1
0
        public override string ParseString(string strValue)
        {
            string result;

            if (string.IsNullOrEmpty(strValue))
            {
                Clear();
                fDatePhrase = string.Empty;
                result      = string.Empty;
            }
            else
            {
                result = GEDCOMUtils.ParseIntDate(this, strValue);
            }
            return(result);
        }