Dynamitey.Invocation.Equals C# (CSharp) Method

Equals() public method

Equalses the specified other.
public Equals ( Invocation other ) : bool
other Invocation The other.
return bool
        public bool Equals(Invocation other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Kind, Kind) && Equals(other.Name, Name) && (Equals(other.Args, Args) || Enumerable.SequenceEqual(other.Args, Args));
        }

Same methods

Invocation::Equals ( object obj ) : bool