如何在没有换行符的情况下将字符串打印到控制台

本文关键字:字符串 打印 控制台 情况下 换行符 | 更新日期: 2023-09-27 18:20:32

我的问题是.

当你想在c#中的问题旁边输入答案时,你键入的是什么

我的意思是这样的,但你在问题旁边键入答案。

string product;
Console.WriteLine("What is the product you want?");
product = Console.ReadLine(); 

如何在没有换行符的情况下将字符串打印到控制台

不要使用Console.WriteLine(),而是使用Console.Write()

我相信您正在寻找Console.Write("your text here");而不是Console.WriteLine("your text here");

string product;
Console.Write("What is the product you want?");
product = Console.ReadLine(); 

听起来你好像在试图去掉换行符。

WriteLine打印新行
Write没有。