aspclassic-core/AspClassic.Scripting/Utils/EmptyReadOnlyCollection.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

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]);
}