Exemplo n.º 1
0
 public override string ParseString(string strValue)
 {
     fLines.Clear();
     if (!string.IsNullOrEmpty(strValue))
     {
         fLines.Add(strValue);
     }
     return(string.Empty);
 }
Exemplo n.º 2
0
        public override string ParseString(string strValue)
        {
            string result = base.ParseString(strValue);

            if (!IsPointer)
            {
                fDescription.Clear();
                if (!string.IsNullOrEmpty(result))
                {
                    fDescription.Add(result);
                }
                result = string.Empty;
            }
            return(result);
        }
Exemplo n.º 3
0
 public override string ParseString(string strValue)
 {
     fLines.Clear();
     fLines.Add(strValue);
     return(string.Empty);
 }