BExplorer.Shell.FilterItem.Contains C# (CSharp) Method

Contains() public method

Splits the filter, trims the results then return all that contain that equal the filter
public Contains ( string filter ) : bool
filter string The string you are looking for
return bool
        public bool Contains(string filter)
        {
            return Filter.Split(',').Any(x => x.Trim() == filter);
        }