i want to ask that how can i apply time limit in snake game.Please send the easiest method.
You should put timer on Form. Set interval as time of your round (time is in milliseconds there) and then click twice on event Tick which will generate automatic functions as:
private void timer1_Tick(object sender, EventArgs e)
{
//your code.
}