예제 #1
0
 /// <inheritdoc />
 public void Dispose()
 {
     this.list = null;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ListEnumerator"/> class.
 /// </summary>
 /// <param name="list">The list to enumerate.</param>
 public ListEnumerator(FlexArrayList <T> list)
 {
     this.list = list;
 }