public override string ParseString(string strValue) { fLines.Clear(); if (!string.IsNullOrEmpty(strValue)) { fLines.Add(strValue); } return(string.Empty); }
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); }
public override string ParseString(string strValue) { fLines.Clear(); fLines.Add(strValue); return(string.Empty); }