Exemple #1
0
        public override bool Equals(object obj)
        {
            if (obj is VotePartition other)
            {
                return(Agnostic.StringComparer.Equals(Task, other.Task) && VoteLines.Equals(other.VoteLines));
            }

            return(false);
        }
Exemple #2
0
 public bool Matches(VotePartition other)
 {
     return(VoteLines.Equals(other.VoteLines));
 }