You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.6 KiB
65 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Linq
|
|
{
|
|
public static class EnumerableExtentions
|
|
{
|
|
public static T[] AsToArray<T>(this IEnumerable<T> source, bool isNullAsEmpty = false)
|
|
{
|
|
if (source == null)
|
|
{
|
|
return isNullAsEmpty ? new T[0] : null;
|
|
}
|
|
|
|
return source as T[] ?? source.ToArray();
|
|
}
|
|
|
|
public static List<T> AsToList<T>(this IEnumerable<T> source, bool isNullAsEmpty = false)
|
|
{
|
|
if (source == null)
|
|
{
|
|
return isNullAsEmpty ? new List<T>() : null;
|
|
}
|
|
|
|
return source as List<T> ?? source.ToList();
|
|
}
|
|
|
|
public static void ForEach<T>(this IEnumerable<T> source, Action<T> process)
|
|
{
|
|
if (source == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(source));
|
|
}
|
|
|
|
if (process == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(process));
|
|
}
|
|
|
|
foreach (T item in source)
|
|
{
|
|
process(item);
|
|
}
|
|
}
|
|
|
|
public static void ForEach<T, R>(this IEnumerable<T> source, Func<T, R> process)
|
|
{
|
|
if (source == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(source));
|
|
}
|
|
|
|
if (process == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(process));
|
|
}
|
|
|
|
foreach (T item in source)
|
|
{
|
|
process(item);
|
|
}
|
|
}
|
|
}
|
|
}
|