我在制作简单的输入和输出程序时遇到问题
I'm having issues makin a simple input and output program
好吧,当我想放这一行时,我使用 visual c#
enter code here
static void Main(string[] args)
{
Console.ReadLine a, b, c, max;
}
}
}
但是它说这个关于 ReadLine 部分的错误:
类型名称 "ReadLine" 在类型 'Console'
中不存在
这是什么???先去阅读 MSDN 文档。错误是因为 ReadLine()
是一种方法,但您正试图将其单独用作一种类型。它应该就在下面假设你已经声明了一个名为 a
的变量并且它的类型是 string
.
a = Console.ReadLine();
阅读Console.ReadLine Method ()。文档中几乎没有很好的示例可以帮助您消除疑虑。
Console.ReadLine是一个方法,所以应该这样使用:
Console.WriteLine("Enter something"); //this will print the text to the screen
string inputText = Console.ReadLine(); // Get string from the input and assign it to the inputText variable
您可以看到一个附加参考 here。
好吧,当我想放这一行时,我使用 visual c#
enter code here
static void Main(string[] args)
{
Console.ReadLine a, b, c, max;
}
}
}
但是它说这个关于 ReadLine 部分的错误: 类型名称 "ReadLine" 在类型 'Console'
中不存在这是什么???先去阅读 MSDN 文档。错误是因为 ReadLine()
是一种方法,但您正试图将其单独用作一种类型。它应该就在下面假设你已经声明了一个名为 a
的变量并且它的类型是 string
.
a = Console.ReadLine();
阅读Console.ReadLine Method ()。文档中几乎没有很好的示例可以帮助您消除疑虑。
Console.ReadLine是一个方法,所以应该这样使用:
Console.WriteLine("Enter something"); //this will print the text to the screen
string inputText = Console.ReadLine(); // Get string from the input and assign it to the inputText variable
您可以看到一个附加参考 here。