14 lines
294 B
C#
14 lines
294 B
C#
using System.Collections;
|
|
using System.Linq;
|
|
|
|
namespace GostXades.Helpers
|
|
{
|
|
public static class CollectionHelper
|
|
{
|
|
public static bool IsNotEmpty(this IEnumerable enumerable)
|
|
{
|
|
return enumerable != null && enumerable.OfType<object>().Any();
|
|
}
|
|
}
|
|
}
|