Skip to content

Commit 98ee424

Browse files
committed
FizzBuzz
- Update code comments
1 parent 98ba62f commit 98ee424

File tree

16 files changed

+7
-4
lines changed

16 files changed

+7
-4
lines changed

.vs/ProjectSettings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"CurrentProjectSetting": null
3+
}

.vs/VSWorkspaceState.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"\\FizzBuzz\\FizzBuzz",
66
"\\FizzBuzz\\FizzBuzz\\FizzBuzz"
77
],
8-
"SelectedNode": "\\FizzBuzz\\FizzBuzz\\FizzBuzz\\Program.cs",
8+
"SelectedNode": "\\FizzBuzz\\FizzBuzz\\FizzBuzz.sln",
99
"PreviewInSolutionExplorer": false
1010
}

.vs/slnx.sqlite

68 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 KB
Binary file not shown.

FizzBuzz/FizzBuzz/FizzBuzz/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ static void Main(string[] args)
6363

6464
// End of CATCH Block
6565

66-
FizzBuzz.FizzBuzzLogic(userNum);
67-
break;
66+
FizzBuzz.FizzBuzzLogic(userNum); // Execute the FizzBuzzLogic method of the FizzBuzz class passing in the value of userNum
67+
break; // As we have successfully validated the user input and run the FizzBuzz logic, we can break the loop and end the application
6868

6969
} //End WHILE
7070

Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)