Beispiel #1
0
 protected bool Equals(BlockStateString other)
 {
     return(string.Equals(Name, other.Name, StringComparison.OrdinalIgnoreCase) && string.Equals(Value, other.Value, StringComparison.OrdinalIgnoreCase));
 }
Beispiel #2
0
 protected bool Equals(BlockStateString other)
 {
     return(Name == other.Name && Value == other.Value);
 }