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

GetHashCode() public method

Serves as a hash function for a particular type.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            unchecked
            {
                int result = this.Operator.GetHashCode();
                result = (result * 397) ^ (this.Member != null ? this.Member.GetHashCode() : 0);
                result = (result * 397) ^ (this.Value != null ? this.Value.GetHashCode() : 0);
                return result;
            }
        }