using System; namespace SabreTools.Core { public static class ArrayExtensions { /// /// Indicates whether the specified array is null or has a length of zero /// public static bool IsNullOrEmpty(this Array? array) { return array == null || array.Length == 0; } } }