Exemplo n.º 1
0
        public override string ParseString(string strValue)
        {
            Clear();
            string result = string.IsNullOrEmpty(strValue) ? string.Empty : GEDCOMUtils.ParseRangeDate(this, strValue);

            return(result);
        }
Exemplo n.º 2
0
        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);
        }