我想让我的控制台窗口在Visual Basic中打开。用我的代码,我只能要求一行,然后窗口关闭。这是我的代码:
Module Module1
Sub Main()
If (Console.ReadLine = "e") Then
Console.WriteLine("Test")
End If
Console.ReadKey()
End Sub
End Module
因此,当我运行此代码时,我可以输入“e”按Enter键。单词出现“测试”,然后按一个键后控制台关闭。但我想让它打开,直到我写一个特殊的词。
答案 0 :(得分:0)
这是一个愚蠢的例子:
Sub Main()
Dim password As String = "007"
Dim response As String
Do
Console.Write("Password: ")
response = Console.ReadLine
If response <> password Then
Console.WriteLine("Incorrect Password!")
End If
Loop While response <> password
Console.WriteLine("Welcome James Bond!")
Console.Write("Press [Enter] to proceed...")
Console.ReadLine()
End Sub