Returns a read-only wrapper for the list.
Namespace:
Linq.Extras
Assembly:
Linq.Extras (in Linq.Extras.dll) Version: 5.0.0+96a4f4bfed64095342c5df107c1fe1fb95603ee5
Syntaxpublic static ReadOnlyCollection<T> AsReadOnly<T>(
this IList<T> list
)
<ExtensionAttribute>
Public Shared Function AsReadOnly(Of T) (
list As IList(Of T)
) As ReadOnlyCollection(Of T)
[<ExtensionAttribute>]
static member AsReadOnly :
list : IList<'T> -> ReadOnlyCollection<'T>
Parameters
- list
- Type: System.Collections.GenericIListT
The list for which to return a read-only wrapper.
Type Parameters
- T
- The type of the elements in list.
Return Value
Type:
ReadOnlyCollectionTA read-only wrapper for
list.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IListT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also