コード例 #1
0
ファイル: jQuery.cs プロジェクト: pdavis68/SaltarelleJQuery
 /// <summary>
 /// Iterates over items in the specified array and calls the callback
 /// for each item in the array. The callback can return false to
 /// break the iteration.
 /// </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, ArrayInterruptableIterationCallback <T> callback)
 {
 }
コード例 #2
0
ファイル: jQuery.cs プロジェクト: pdavis68/SaltarelleJQuery
 /// <summary>
 /// Iterates over items in the specified array and calls the callback
 /// for each item in the array. The callback can return false to
 /// break the iteration.
 /// </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, ArrayInterruptableIterationCallback callback)
 {
 }