gpt4 book ai didi

c# console writeline 在字符串之后

转载 作者:太空宇宙 更新时间:2023-11-03 19:02:08 26 4
gpt4 key购买 nike

所以我想知道,如何让控制台在字符串后开始输入?例如:控制台显示 Username >,我可以在其后键入而不是在下方键入。

例子:

我现在如何拥有它:

Username >
i type here

我想要什么:

Username > i type here

希望你们明白我的意思,谢谢!

最佳答案

Console.Readline() 之前输出提示文本:

Console.Write("Username > ");

您遇到的问题是因为您使用了 Console.WriteLine(),它会在您告诉它写入的任何内容后附加一个新行。所以只使用 Console.Write()

来自 MSDN:

Console.WriteLine() - Writes the specified data, followed by the current line terminator, to the standard output stream.

Console.Write() - Writes the text representation of the specified value or values to the standard output stream.

关于c# console writeline 在字符串之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34404006/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com