/// <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) { }
/// <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) { }