我正在尝试学习来自 C++ 的 C#。我正在编写一些基本的控制台内容来感受它,并且想知道是否可以在 C# 中进行简单的输入链接。例如在 C++ 中:
cout<<"Enter two numbers: ";
cin >> int1 >> int2;
然后您可以输入 3 5 并按回车键,这些值就可以了。但是在 C# 中,我必须像这样拆分它(据我所知):
Console.Write("Enter the first number: ";
int1 = (char)Console.Read();
Console.Writeline("");
Console.Write("Enter the second number: ";
int2 = (char)Console.Read();
也许我只是错过了一些东西。