예제 #1
0
        public override bool Equals(object obj)
        {
            var other = obj as ColumnDefinition;

            if (other?.Type != Type)
            {
                return(false);
            }

            return(SourceAccounts.Compare(other.SourceAccounts) &&
                   TargetAccounts.Compare(other.TargetAccounts));
        }