Class AbpEnumerableExtensions
Inheritance
AbpEnumerableExtensions
Assembly: Volo.Abp.Core.dll
Syntax
public static class AbpEnumerableExtensions
Methods
JoinAsString(IEnumerable<string>, string)
Declaration
public static string JoinAsString(this IEnumerable<string> source, string separator)
Parameters
Returns
JoinAsString<T>(IEnumerable<T>, string)
Declaration
public static string JoinAsString<T>(this IEnumerable<T> source, string separator)
Parameters
Returns
Type Parameters
WhereIf<T>(IEnumerable<T>, bool, Func<T, bool>)
Declaration
public static IEnumerable<T> WhereIf<T>(this IEnumerable<T> source, bool condition, Func<T, bool> predicate)
Parameters
Returns
Type Parameters
WhereIf<T>(IEnumerable<T>, bool, Func<T, int, bool>)
Declaration
public static IEnumerable<T> WhereIf<T>(this IEnumerable<T> source, bool condition, Func<T, int, bool> predicate)
Parameters
Returns
Type Parameters