mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
15 lines
358 B
C#
15 lines
358 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace SabreTools.Core
|
||
|
|
{
|
||
|
|
public static class ArrayExtensions
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Indicates whether the specified array is null or has a length of zero
|
||
|
|
/// </summary>
|
||
|
|
public static bool IsNullOrEmpty(this Array? array)
|
||
|
|
{
|
||
|
|
return array == null || array.Length == 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|