mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
9 lines
236 B
C#
9 lines
236 B
C#
namespace System.Collections
|
|
{
|
|
public static class EnumerableExtensions
|
|
{
|
|
public static bool IsNullOrEmpty(this IEnumerable source)
|
|
=> source == null || source.GetEnumerator().MoveNext() == false;
|
|
}
|
|
}
|