Implicitly convert a value into a one-element list.

Namespace:  Sasa.Collections
Assembly:  Sasa (in Sasa.dll)

Syntax

Visual Basic (Declaration)
Public Shared Widening Operator CType ( _
	t As T _
) As Seq(Of T)
C#
public static implicit operator Seq<T> (
	T t
)
Visual C++
static implicit operator Seq<T>^ (
	T t
)
JavaScript
JavaScript does not support the declaration of new casting operators.

Parameters

t
Type: T
The value to implicitly convert.

Return Value

A single element list.

See Also