fcs-utils/ExtensionsEx.cs

49 lines
1.8 KiB
C#
Raw Normal View History

2020-10-19 11:22:06 +02:00
// ***********************************************************************
2022-02-24 11:57:37 +01:00
// Assembly : FCS.Lib.Utility
2020-10-19 11:22:06 +02:00
// Author : FH
// Created : 27-08-2016
//
// Last Modified By : Frede H.
2022-02-24 11:40:38 +01:00
// Last Modified On : 02-24-2022
2020-10-19 11:22:06 +02:00
// ***********************************************************************
// <copyright file="ExtensionsEx.cs" company="FCS">
2022-02-24 10:11:45 +01:00
// Copyright (C) 2022 FCS Frede's Computer Services.
// This program is free software: you can redistribute it and/or modify
2022-03-14 14:23:33 +01:00
// it under the terms of the Affero GNU General Public License as
2022-02-24 10:11:45 +01:00
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
2022-02-04 08:39:06 +01:00
//
2022-02-24 10:11:45 +01:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2022-03-14 14:23:33 +01:00
// Affero GNU General Public License for more details.
2022-02-04 08:39:06 +01:00
//
2022-03-14 14:23:33 +01:00
// You should have received a copy of the Affero GNU General Public License
2022-02-24 14:00:27 +01:00
// along with this program. If not, see [https://www.gnu.org/licenses/agpl-3.0.en.html]
2022-02-24 10:11:45 +01:00
// </copyright>
// <summary></summary>
2020-10-19 11:22:06 +02:00
// ***********************************************************************
using System;
using System.Collections.Generic;
2022-02-24 11:40:38 +01:00
namespace FCS.Lib.Utility
2020-10-19 11:22:06 +02:00
{
/// <summary>
2022-02-04 08:39:06 +01:00
/// Class ExtensionsEx.
2020-10-19 11:22:06 +02:00
/// </summary>
public static class ExtensionsEx
{
/// <summary>
2021-11-06 11:16:18 +01:00
/// ForEach loop
2020-10-19 11:22:06 +02:00
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="items">The items.</param>
/// <param name="action">The action.</param>
public static void ForEach<T>(this IEnumerable<T> items, Action<T> action)
{
foreach (var item in items)
action(item);
}
}
}