コード例 #1
0
ファイル: GDMNoteRecord.cs プロジェクト: m-kosina/GEDKeeper
 public override string ParseString(string strValue)
 {
     fLines.Clear();
     if (!string.IsNullOrEmpty(strValue))
     {
         fLines.Add(strValue);
     }
     return(string.Empty);
 }
コード例 #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);
        }
コード例 #3
0
ファイル: GDMNotes.cs プロジェクト: Akeloya/GEDKeeper
 public override string ParseString(string strValue)
 {
     fLines.Clear();
     fLines.Add(strValue);
     return(string.Empty);
 }