public bool Equals(HashKey otherKey) { if (otherKey == null) { return(false); } for (int i = 0; i < content.Length; i++) { if (content[i] != otherKey.content[i]) { return(false); } } return(true); }
public bool Equals(string s) { HashKey other = ParseFromString(s); return(Equals(other)); }