UIA.Extensions.AutomationProviders.Interfaces.Tables.CellInformation.FieldsEqual C# (CSharp) Method

FieldsEqual() private method

private FieldsEqual ( CellInformation other ) : bool
other CellInformation
return bool
        private bool FieldsEqual(CellInformation other)
        {
            return Equals(Value, other.Value)
                   && Equals(Column, other.Column)
                   && Equals(Row, other.Row);
        }
    }