Dev2.Simulation.SimulationResult.Equals C# (CSharp) Method

Equals() public method

Indicates whether the current object is equal to another object of the same type.
public Equals ( ISimulationResult other ) : bool
other ISimulationResult An object to compare with this object.
return bool
        public bool Equals(ISimulationResult other)
        {
            if(ReferenceEquals(null, other))
            {
                return false;
            }
            if(ReferenceEquals(this, other))
            {
                return true;
            }
            return Equals(Key, other.Key);
        }

Same methods

SimulationResult::Equals ( object obj ) : bool