csharp 数组扩展方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 数组扩展方法相关的知识,希望对你有一定的参考价值。

/// <summary>Indicates whether the specified array is null or has a length of zero.</summary>
/// <param name="array">The array to test.</param>
/// <returns>true if the array parameter is null or has a length of zero; otherwise, false.</returns>
public static bool IsNullOrEmpty(this Array array)
{
    return (array == null || array.Length == 0);
}

以上是关于csharp 数组扩展方法的主要内容,如果未能解决你的问题,请参考以下文章

csharp 扩展方法和元组

csharp 扩展方法用法示例

csharp JSON.NET:JObject扩展方法

csharp 扩展方法

csharp 扩展方法

csharp 扩展方法