OpenIDE.CodeEngine.Core.UI.TypeSearchForm.writeStatistics C# (CSharp) 메소드

writeStatistics() 개인적인 메소드

private writeStatistics ( ) : void
리턴 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;
        }