mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-19 12:29:48 -06:00
12 lines
249 B
C#
12 lines
249 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace DM.MovieApi.Shims;
|
|
|
|
public static class CollectionExtensions
|
|
{
|
|
public static IReadOnlyList<T> AsReadOnly<T>( this List<T> list )
|
|
{
|
|
return new ReadOnlyCollection<T>( list );
|
|
}
|
|
}
|