1234567891011121314151617181920212223242526 |
- using System.Collections;
- namespace HTEX.Complex
- {
- public static class CollectionHelper
- {
- public static bool IsEmpty(this ICollection collection)
- {
- if (collection != null && collection.Count > 0)
- {
- return false;
- }
- return true;
- }
- public static bool IsNotEmpty(this ICollection collection)
- {
- if (collection != null && collection.Count > 0)
- {
- return true;
- }
- return false;
- }
- }
- }
|