BuildReportTool.FileFilterGroup.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            string ret = "(" + _names.Length + ") ";
            for (int n = 0, len = _names.Length; n < len; ++n)
            {
            ret += _names[n] + ", ";
            }
            return ret;
        }