Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            TagShort tag = obj as TagShort;

            return(tag == null ? false : tag.Value == Value && tag.Name == Name);
        }
Exemplo n.º 2
0
 public TagShort(TagShort original)
     : this(original.Name, original.Value)
 {
 }