我不确定如何解释这个...
基本上我希望能够在控制台窗口中编写文本行,例如用于编写对话的旧RPG,一次一个字符。这个游戏口袋妖怪神秘地牢(包含剧透btw)的例子:http://www.youtube.com/watch?v=i29juf2e92c
基本上就像对话的显示方式一样。
编辑:还应该提一下,我将从文件中读取文本,并且我希望一次在该文件中写入一个字符。
答案 0 :(得分:8)
您可以使用Console.Write
一次打印单个字符而不使用WriteLine
提供的换行符,并调用Thread.Sleep
在字符之间暂停。例如:
using System;
using System.Threading;
class Program
{
static void Main(string[] args)
{
string text = "This will be printed one character at a time";
foreach (char c in text)
{
Console.Write(c);
Thread.Sleep(50);
}
}
}