CSharp examples for System:Array Null Element
Is Array Null Or Empty
using System;//www . ja v a2 s . co m public class Main{ public static bool IsNullOrEmpty(this Array array) { return array == null || array.Length == 0; } }