Inheritance: IIntellisenseController
        public IIntellisenseController TryCreateIntellisenseController(ITextView textView, IList<ITextBuffer> subjectBuffers) {
            QuickInfoController quickInfoController = ServiceManager.GetService<QuickInfoController>(textView);
            if (quickInfoController == null) {
                quickInfoController = new QuickInfoController(textView, subjectBuffers, _quickInfoBroker, _shell);
            }

            return quickInfoController;
        }
        public IIntellisenseController TryCreateIntellisenseController(ITextView textView, IList <ITextBuffer> subjectBuffers)
        {
            QuickInfoController quickInfoController = ServiceManager.GetService <QuickInfoController>(textView);

            if (quickInfoController == null)
            {
                quickInfoController = new QuickInfoController(textView, subjectBuffers, quickInfoBroker);
            }

            return(quickInfoController);
        }