控制台钢琴小程序
static void Main(string[] args)
{
WindowsMediaPlayer wmp = new WindowsMediaPlayer();
[email protected]"f:\all of musics\kukuku\hisaishi joe - ballade.mp3";
while (true)
{
ConsoleKeyInfo cki = Console.ReadKey(true);
int c = cki.KeyChar - 48;
Console.ForegroundColor = (ConsoleColor)c;
Console.Write(c);
Console.Beep(c * 200, 200);
}
}
时间: 2024-10-26 23:13:22