Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1. public class Calc
  2. {
  3.     private int _value;
  4.  
  5.     public void AddNumber(int num)
  6.     {
  7.         _value += num;
  8.     }
  9.  
  10.     public int GetNumber()
  11.     {
  12.         return _value;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement