Exemplo n.º 1
0
 /// <summary>
 /// Iterates over items in the specified array and calls the callback
 /// for each item in the array.
 /// </summary>
 /// <param name="items">The array to iterate over.</param>
 /// <param name="callback">The callback to invoke for each item.</param>
 public static void Each <T>(List <T> items, ArrayIterationCallback <T> callback)
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Iterates over items in the specified array and calls the callback
 /// for each item in the array.
 /// </summary>
 /// <param name="items">The array to iterate over.</param>
 /// <param name="callback">The callback to invoke for each item.</param>
 public static void Each(Array items, ArrayIterationCallback callback)
 {
 }