BitSharper.Threading.Runnable.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified other instance is equal to the current Runnable.
public Equals ( Runnable other ) : bool
other Runnable /// The other to compare with the current instance. ///
return bool
        public virtual bool Equals(Runnable other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other._action, _action);
        }

Same methods

Runnable::Equals ( object obj ) : bool