Skip to content

Commit

Permalink
Adding missing ReadKey
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystynaSlusarczykLearning committed Aug 27, 2021
1 parent 3dcd1a9 commit bf6ca10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*.bak
*.ncb
*.log
*.v2
*.DS_Store
[Tt]humbs.db
_ReSharper.*
Expand Down
5 changes: 4 additions & 1 deletion StaticKeyword/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;

namespace StaticKeyword
{
Expand Down Expand Up @@ -39,6 +40,8 @@ static void Main(string[] args)
var maxCount = Box.MaxCount;
var elementsCount = box2.GetCurrentCount();
var maxCountFormatted = Box.FormatMaxCount();

Console.ReadKey();
}
}
}

0 comments on commit bf6ca10

Please sign in to comment.