Dev2.Activities.DsfOracleDatabaseActivity.Equals C# (CSharp) Method

Equals() public method

public Equals ( other ) : bool
return bool
        public bool Equals(DsfOracleDatabaseActivity other)
        {
            if (ReferenceEquals(null, other))
            {
                return false;
            }

            if (ReferenceEquals(this, other))
            {
                return true;
            }

            return base.Equals(other)
                && string.Equals(SourceId.ToString(), other.SourceId.ToString())
                && string.Equals(ProcedureName, other.ProcedureName);
        }

Same methods

DsfOracleDatabaseActivity::Equals ( object obj ) : bool