Advertisement
claukiller

Untitled

Feb 11th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. private void Invariant (){
  2. Debug.Assert(isEmpty ?
  3. list.NumberOfElements ==0:
  4. list.NumberPfElements >0 );
  5. }
  6.  
  7. first line of every method and last line except the constructor
  8. constructor only at the end
  9.  
  10. Invariant();
  11. return a;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement