Guest User

Untitled

a guest
May 28th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public class MyArray
  2. {
  3. const int defaultLenght = 3;
  4.  
  5. public int reservsize{get; private set;}
  6. public MyArray()
  7. {
  8. reservsize = defaultLenght;
  9. }
  10. public int count
  11. {
  12. get;
  13. private set;
  14. }
  15.  
  16. object[] mas = new object[defaultLenght];
Add Comment
Please, Sign In to add comment