Exemple #1
0
        public static IVsTextLines GetTextLines(this IAsyncServiceProvider serviceProvider)
        {
            IVsTextView textView = serviceProvider.GetTextView();

            if (textView == null)
            {
                return(null);
            }

            textView.GetBuffer(out IVsTextLines buffer);
            return(buffer);
        }