TShock/TShockAPI/Extensions/LinqExt.cs

17 lines
444 B
C#

using System;
using System.Collections.Generic;
namespace TShockAPI
{
public static class LinqExt
{
public static void ForEach<T>(this IEnumerable<T> source, Action<T> action)
{
if (source == null) throw new ArgumentNullException("source");
if (action == null) throw new ArgumentNullException("action");
foreach (T item in source)
action(item);
}
}
}