コード例 #1
0
        public static void Output(string message)
        {
            var outputPane = ServiceLocator.GetGlobalService <SVsGeneralOutputWindowPane, IVsOutputWindowPane>();

            outputPane.OutputStringThreadSafe(message + Environment.NewLine);
        }
コード例 #2
0
        public static void Activate()
        {
            var outputPane = ServiceLocator.GetGlobalService <SVsGeneralOutputWindowPane, IVsOutputWindowPane>();

            outputPane.Activate();
        }