Click or drag to resize

XListAsReadOnlyT Method

Returns a read-only wrapper for the list.

Namespace:  Linq.Extras
Assembly:  Linq.Extras (in Linq.Extras.dll) Version: 5.0.0+96a4f4bfed64095342c5df107c1fe1fb95603ee5
Syntax
public static ReadOnlyCollection<T> AsReadOnly<T>(
	this IList<T> list
)

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: ReadOnlyCollectionT
A 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