Example #1
0
 public MyListEnumerator(MyList <T> list)
 {
     this.list  = list;
     this.index = -1;
     current    = default(T);
 }