↧
c# memory game
Hi Carl,I am not fully sure about your issue, what display time you are asking for?Here is a good C# memory game tutorial:http://forum.codecall.net/topic/41447-c-memory-game-tutorial/This is a simple...
View Articlec# memory game
Hello, You can use timer to this.private void button1_Click(object sender, EventArgs e) { timer1.Interval = 3000; timer1.Start(); } private void timer1_tick(object sender, EventArgs e) {...
View Articlec# memory game
Which display time you are asking for?In general you can add a delay by using Sleep method of Threadhttp://msdn.microsoft.com/en-us/library/system.threading.thread.sleep(v=vs.110).aspx Mark Answered,...
View Article