Exemple #1
0
 public FTagObject(string subpath, string ptags, string descript = "")
 {
     this.subpath  = subpath;
     this.descript = descript;
     tags          = FTagTool.GetTagList(ptags);
     tags.Sort();
 }
Exemple #2
0
 public FTagGroup(string name, string tags, string descript = "")
 {
     group_name    = name;
     this.descript = descript;
     this.tags     = FTagTool.GetTagList(tags);
     this.tags.Sort();
 }