Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
14 lines
298 B
C#
14 lines
298 B
C#
using System.Collections;
|
|
using System.Linq;
|
|
|
|
namespace Hcs.GostXades.Helpers
|
|
{
|
|
public static class CollectionHelper
|
|
{
|
|
public static bool IsNotEmpty(this IEnumerable enumerable)
|
|
{
|
|
return enumerable != null && enumerable.OfType<object>().Any();
|
|
}
|
|
}
|
|
}
|