On Tue, May 18, 2010 at 1:21 PM, DotNet Dude <[email protected]> wrote:
> Wouldn't this be enough?
>
> counter+=1;
> ...
> if (counter == 10000) {
> ...
> counter = 0;
> }
>
Precisely. Bitwise operator use for the sake of bitwise operator use is a
bit annoying to read when in maintenance mode, actually.
Paul.
