Telerik.Web.Mvc.FilterDescriptor.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified obj is equal to the current descriptor.
public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            var other = obj as FilterDescriptor;
            if ( other == null )
            {
                return false;
            }

            return Equals(other);
        }

Same methods

FilterDescriptor::Equals ( FilterDescriptor other ) : bool