在vb.net中,我正在尝试使用控制台编写一个程序,控制台在该控制台上写入行数:',然后控制台将冒号后输入的数字指定给变量。有没有办法让控制台读取写入的行内的值。即你可以在console.writeline()中使用console.readline()吗?
答案 0 :(得分:1)
您需要先使用Console.Write
然后使用Console.ReadLine
。
例如:
Console.Write("Number of cars: ")
Dim cars As Integer
If Integer.TryParse(Console.ReadLine(), cars) Then
' Do something interesting
Console.WriteLine("{0} cars, eh?", cars)
Else
Console.WriteLine("Couldn't tell how many cars!")
End If
输出将是这样的:
Number of cars: 3
3 cars, eh?