Guest User

Untitled

a guest
Jan 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Console
  2. {
  3. private int Counter { get; set; }
  4.  
  5. public void Print(string message)
  6. {
  7. CheckThatMessageIsCorrectForInterviewQuestion();
  8. Counter++;
  9. }
  10.  
  11. public int GetCount()
  12. {
  13. return Counter;
  14. }
  15. }
Add Comment
Please, Sign In to add comment