Click or drag to resize
ListBaseTAsReadOnly Method
Provides a read-only view of this list. The returned IList<T> provides a view of the list that prevents modifications to the list. Use the method to provide access to the list without allowing changes. Since the returned object is just a view, changes to the list will be reflected in the view.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public virtual IList<T> AsReadOnly()

Return Value

Type: IListT
An IList<T> that provides read-only access to the list.
See Also