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

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