System.Dynamic.CallInfo.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified CallInfo instance is considered equal to the current.
public Equals ( object obj ) : bool
obj object The instance of CallInfo to compare with the current instance.
return bool
        public override bool Equals(object obj)
        {
            var other = obj as CallInfo;
            return other != null && ArgumentCount == other.ArgumentCount && ArgumentNames.ListEquals(other.ArgumentNames);
        }
    }