public bool Equals(T other)
        {
            Contract.Requires <ArgumentNullException>(other != null);

            return(Genes.Equals(other));
        }
示例#2
0
 public bool Equals(T other)
 {
     return(Genes.Equals(other));
 }