Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created September 16, 2014 14:48
Show Gist options
  • Save yuuichi-fujioka/844f8ee91f3e5aae38fb to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/844f8ee91f3e5aae38fb to your computer and use it in GitHub Desktop.
Keyable class
public class MyKey : IEquatable<Item>
{
public int no;
public bool Equals(Item other)
{
return no == other.no;
}
public override int GetHashCode()
{
return no.GetHashCode();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment