NullableSpanT Conversion (NullableSpanT to SpanT)
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public static explicit operator Span<T> (
NullableSpan<T> value
)
Public Shared Narrowing Operator CType (
value As NullableSpan(Of T)
) As Span(Of T)
Dim input As NullableSpan(Of T)
Dim output As Span(Of T)
output = CType(input, Span(Of T))
static explicit operator Span<T> (
NullableSpan<T> value
)
- value NullableSpanT
- The NullableSpanT to convert.
SpanTThe value of the
Value property.