ReadOnlyList<T> Implicit Conversion (List<T> to ReadOnlyList<T>)

Returns an implicit conversion from a list to a read only list.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

'Declaration
Public Shared Widening Operator CType ( _
    list As List(Of T) _
) As ReadOnlyList(Of T)
'Usage
Dim input As List(Of T)
Dim output As ReadOnlyList(Of T)

output = CType(input, ReadOnlyList(Of T))
public static implicit operator ReadOnlyList<T> (
    List<T> list
)
static implicit operator ReadOnlyList<T> (
    List<T>^ list
)
JScript supports the use of custom casts, but not the declaration of new ones.

Parameters

Return Value

Type: Microsoft.SqlServer.Management.Sdk.Sfc.ReadOnlyList<T>
A list that wraps the specified list.

See Also

Reference

ReadOnlyList<T> Structure

Implicit Overload

Microsoft.SqlServer.Management.Sdk.Sfc Namespace