CrazyStuff.Expressions.MethodCallInfo.Equals C# (CSharp) Method

Equals() public method

public Equals ( MethodCallInfo other ) : bool
other MethodCallInfo
return bool
        public bool Equals(MethodCallInfo other)
        {
            // Use StructuralComparisons for getting "value semantic"
            var arrayComparer = StructuralComparisons.StructuralEqualityComparer;
            return Equals(MethodName, other.MethodName)
                && arrayComparer.Equals(Arguments, other.Arguments);
        }

Same methods

MethodCallInfo::Equals ( object obj ) : bool