我正在製作一個C#窗體窗體應用程序。我想在我的表單應用程序中使用Console.write()。我讀了很多東西。但沒有奏效。你能給我一個乾淨的代碼來實現這一目標嗎? 在此先感謝。如何Console.write()在C#窗體窗體應用程序
P.S.
[DllImport("kernel32.dll")]
static extern bool AttachConsole(int dwProcessId);
private const int ATTACH_PARENT_PROCESS = -1;
public Form1()
{
InitializeComponent();
AttachConsole(ATTACH_PARENT_PROCESS);
Console.WriteLine("This is from the main program");
}
這不適合我。
看這裏(問題和答案):http://stackoverflow.com/questions/7743387/behavior-in-winform-console-hybrid-application – elgonzo
也看看這裏:http://stackoverflow.com/questions/7613880 /從控制檯和winforms-applications-when-running-from-cmd – elgonzo
你需要什麼? Winform應用程序也有控制檯窗口?你想在控制檯中寫入? –