mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-20 22:09:43 -06:00
14 lines
313 B
C#
14 lines
313 B
C#
using System.Collections.Generic;
|
|
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 );
|
|
}
|
|
}
|
|
}
|