Am stuck at this section in code.
I want a int variable to increase by X every second till (variable<=required number).
Please guide me.
Edit //
I am having a variable 'i'.
And I want its max value to be say.. 280
I want to perform increment function on variable so that every second value of 'i' increases by 1 till (i=280)
Do you want to make it single-threaded?
int i = 0;
while (i < max)
{
i++;
Thread.Sleep(x); // in milliseconds
}
or multi-threaded:
static int i = 0; // class scope
var timer = new Timer { Interval = x }; // in milliseconds
timer.Elapsed += (s,e) =>
{
if (++i > max)
timer.Stop();
};
timer.Start();
You can create an instance of Timer class with 1 second interval (passing 1000 in the contructor) and then register the Elapsed event. Do the increment you are trying in the event handler code.
Without any context this code should do its job:
for(int i=0; i<280; i++){
Thread.Sleep(1000);
}
But for UI stuff you should use e.g. a Timer.