Returns a readonly version of this RList.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public RList<T> AsReadOnly()
Visual Basic (Declaration)
Public Function AsReadOnly As RList(Of T)
Visual C++
public:
RList<T>^ AsReadOnly()

Return Value

A readonly version of this RList.

Remarks

If this RList is already readonly, this method will return a reference to this RList instead of creating a new one.

See Also