Esempio n. 1
0
        public void Remove(string obj)
        {
            TagInfo info = null;

            this.tagList.TryRemove(obj, out info);
        }
Esempio n. 2
0
 public void Add(TagInfo tag)
 {
     this.tagList.TryAdd(tag.TagName, tag);
 }
Esempio n. 3
0
 public void Remove(TagInfo obj)
 {
     Remove(obj.TagName);
 }
Esempio n. 4
0
 //Methods
 public bool Contains(TagInfo t)
 {
     return(this.tagList.ContainsKey(t.TagName));
 }