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

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string
		public override string ToString()
        {
            string filterString = $" ({Filter})";
            return Caption.EndsWith(filterString) ? Caption : Caption + filterString;
        }