大家好我从Windows窗体应用程序读取和写入控制台时遇到了问题。
我正在运行视觉工作室2010,我正在使用visual basic进行编码。
我目前的代码如下:
Declare Function AttachConsole Lib "kernel32.dll" (ByVal dwProcessId As Int32) As Boolean
Declare Function FreeConsole Lib "kernel32.dll" () As Boolean
System.Console.Write("abc")
Dim test as string = Console.ReadLine()
System.Console.Clear()
ect
FreeConsole()
使用以下代码我可以写入控制台,但我无法从中读取任何想法?