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