14 lines
288 B
C#
14 lines
288 B
C#
using System;
|
|
|
|
namespace ICSharpCode.SharpZipLib.Core
|
|
{
|
|
internal static class Empty
|
|
{
|
|
internal static class EmptyArray<T>
|
|
{
|
|
public static readonly T[] Value = new T[0];
|
|
}
|
|
public static T[] Array<T>() => EmptyArray<T>.Value;
|
|
}
|
|
}
|