在Winform中打开控制台

1、方法一

直接在解决方案对应的项目中右击,选择属性->应用程序->输出类型,在下拉列表中选择 控制台应用程序

2、方法二

由于控制台api被封装在kernel32.dll链接库中,而kernel32.dll并未托管dll,所以需要使用DllImport来导入。

    static class Program
    {
        /// 
        /// 启动控制台
        /// 
        /// 
        [DllImport("kernel32.dll")]
        public static extern Boolean AllocConsole();
        
        /// 
        /// 释放控制台
        /// 
        /// 
        [DllImport("kernel32.dll")]
        public static extern Boolean FreeConsole();

        /// 
        /// 应用程序的主入口点。
        /// 
        [STAThread]
        static void Main()
        {
#if DEBUG
            AllocConsole();
          //  Console.WriteLine("aa");
#endif

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());

#if DEBUG
            FreeConsole();
#endif
        }
    }

 

你可能感兴趣的:(C#,.NET)