Files
2022-08-25 15:20:58 +02:00

16 lines
327 B
C#

using System;
using System.Collections.Generic;
namespace SearchQueryTool.Helpers
{
internal static class Extensions
{
public static void ForEach<T>(this IEnumerable<T> ie, Action<T> action)
{
foreach (var i in ie)
{
action(i);
}
}
}
}