8 lines
218 B
C#
8 lines
218 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace AspClassic.Scripting.Utils;
|
|
|
|
internal static class EmptyReadOnlyCollection<T>
|
|
{
|
|
internal static ReadOnlyCollection<T> Instance = new ReadOnlyCollection<T>(new T[0]);
|
|
}
|