Last active
January 3, 2020 12:58
-
-
Save 0x414c49/bc8b6d7541c8330ea9cdf55e31d3e3d1 to your computer and use it in GitHub Desktop.
Blazor debug -2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void IncrementCount() | |
{ | |
Console.WriteLine(currentCount); | |
if(currentCount > 10) | |
currentCount = 0; | |
currentCount++; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment