Exemplo n.º 1
0
 /// <inheritdoc />
 public void Dispose()
 {
     this.list = null;
 }
Exemplo n.º 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;
 }