Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C#(我仍在学习)将井字游戏创建为控制台应用程序。我想知道是否可以将用户输入从 anx更改为大写字母X,因为它看起来更好。
x
X
您可以使用将字符串更改为其大写形式
.ToUpper();
编辑 - 要在控制台窗口中更改它,我会使用它:
Console.ReadKey(false)
将从控制台窗口隐藏按下的键,然后您可以自己用大写字母编写。
http://msdn.microsoft.com/en-us/library/x3h8xffw.aspx