6 lines
121 B
C#
6 lines
121 B
C#
namespace AspClassic.Scripting.Utils;
|
|
|
|
internal static class EmptyArray<T>
|
|
{
|
|
internal static T[] Instance = new T[0];
|
|
}
|