Exemple #1
0
        public bool Equals(TableRowInfo t)
        {
            if (t == null)
            {
                return(false);
            }

            return(ColumnName == t.ColumnName && ColumnID == t.ColumnID);
        }
Exemple #2
0
        public override bool Equals(object obj)
        {
            TableRowInfo t = obj as TableRowInfo;

            if (t == null)
            {
                return(false);
            }

            return(Equals(t));
        }