How do I show a console output/window in a forms application?

前端 未结 11 1488
我寻月下人不归
我寻月下人不归 2020-11-22 11:15

To get stuck in straight away, a very basic example:

using System;
using System.Windows.Forms;

class test
{ 
    static void Main()
    { 
        Console.W         


        
11条回答
  •  不思量自难忘°
    2020-11-22 11:41

    Perhaps this is over-simplistic...

    Create a Windows Form project...

    Then: Project Properties -> Application -> Output Type -> Console Application

    Then can have Console and Forms running together, works for me

提交回复
热议问题