OpenIDE.CodeEngine.Core.UI.TypeSearchForm.writeStatistics C# (CSharp) Method

writeStatistics() private method

private writeStatistics ( ) : void
return void
        void writeStatistics()
        {
            var text = string.Format("Projects: {2}, Files: {0}, Code References: {1}",
                _cache.FileCount,
                _cache.CodeReferences,
                _cache.ProjectCount);
            if (labelInfo.Text != text)
                labelInfo.Text = text;
        }