namespace System
{
///
/// Add functions to the array class.
///
public static class ArrayExtensions
{
///
/// Returns a Boolean indicating whether the Array is Empty (is Null or has a length of zero).
/// Extension Added by dotNetExt.Array
///
/// Required. The Array to check against.
/// Returns a Boolean indicating whether the Array is Empty (is Null or has a length of zero).
public static bool IsEmpty(this Array array)
{
return ((array == null) || (array.Length == 0));
}
}
}