// Override for ease of making sets
 protected bool Equals(Tag other)
 {
     return string.Equals(Value, other.Value) && string.Equals(Role, other.Role);
 }
Beispiel #2
0
 // Override for ease of making sets
 protected bool Equals(Tag other)
 {
     return(string.Equals(Value, other.Value) && string.Equals(Role, other.Role));
 }