DateTime newDate = new DateTime(2013, 1, 1);
void AddTime()
{
timer1.Interval = 600000;
timer1.Enabled = true;
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Start();
}
void timer1_Tick(object sender, EventArgs e)
{
newDate = newDate.AddMonths(+3);
lblDate.Text = newDate.ToString();
}
何らかの理由で を変更しtimer1.Interval
ても、 に追加される 3 か月の速度は変わらず、newDate
常に一定です。ゲーム内での 1 分間の実生活時間が 3 か月に相当するようにしています。私はC#を使用しています。