所以我正在用c#制作一个小型视频游戏,评分系统以秒为单位。当玩家完成关卡时,我想获取计时器值并将时间存储在其他玩家时间的数据库中。
private void timer2_Tick(object sender, EventArgs e)
{
I++;
lblView.Text = I.ToString() + " Seconds";
}
这是我计时器的代码。
我不确定如何使 I 变量,我已经将计时器用于全局变量。抱歉,如果这看起来很模糊,我无法描述我想发生的事情。
静态类语法
public static class Helper { public static int I = 0; }
访问static
变量。
private void timer2_Tick(object sender, EventArgs e)
{
Helper.I++;//here accessing static variable
lblView.Text = Helper.I.ToString() + " Seconds";
}