public override bool Equals(object obj)
        {
            Pre50Key other = obj as Pre50Key;

            return(other != null && value.Equals(other.value));
        }
 protected int SpecificTypeComparer(Pre50Key other)
 {
     return(value.CompareTo(other.value));
 }