System.ComponentModel.ToolboxItemFilterAttribute.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode() {
            // No need to hash on filter type as well; there shouldn't be that many duplicates.
            return filterString.GetHashCode();
        }