コード例 #1
0
ファイル: Tag.cs プロジェクト: retahc/old-code
        public IList Get(CommonField id)
        {
            IList list = Get(id.ToString());

            if (list.Count == 0)
            {
                try {
                    return(Get(((CommonField)common_field_aliases[id]).ToString()));
                } catch (Exception) {
                    return(list);
                }
            }

            return(list);
        }
コード例 #2
0
ファイル: Tag.cs プロジェクト: emtees/old-code
 public void Add(CommonField id, string content)
 {
     Add(id.ToString(), content, false);
 }
コード例 #3
0
ファイル: Tag.cs プロジェクト: emtees/old-code
 public void Set(CommonField id, string content)
 {
     Set(id.ToString(), content);
 }
コード例 #4
0
ファイル: Tag.cs プロジェクト: emtees/old-code
 public IList Get(CommonField id)
 {
     IList list = Get(id.ToString());
     if(list.Count == 0) {
         try {
             return Get(((CommonField)common_field_aliases[id]).ToString());
         } catch(Exception) {
             return list;
         }
     }
     
     return list;
 }
コード例 #5
0
ファイル: Tag.cs プロジェクト: retahc/old-code
 public void Add(CommonField id, string content)
 {
     Add(id.ToString(), content, false);
 }
コード例 #6
0
ファイル: Tag.cs プロジェクト: retahc/old-code
 public void Set(CommonField id, string content)
 {
     Set(id.ToString(), content);
 }