コード例 #1
0
 /// <summary>
 /// Performs the specified action on each element of the list.
 /// </summary>
 public static void ForEach(SystemGenerics.List <T> list, Action <T> action)
 {
     (list as Mock)?.CheckDataRace(false);
     list.ForEach(action);
 }