using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; public class MainClass { public static void Main() { List<int> intList = new List<int>(new int[] { 3, 5, 15, 1003, 25 }); } }
18.10.Generic IEnumerator | ||||
18.10.1. | IEnumerator | |||
18.10.2. | Creating a list from an array | |||
18.10.3. | A generic iterator. | |||
18.10.4. | Generic IEnumerator/IEnumerable | |||
18.10.5. | Template method |