NullableSpanT Conversion (SpanT to NullableSpanT)
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public static implicit operator NullableSpan<T> (
Span<T> value
)
Public Shared Widening Operator CType (
value As Span(Of T)
) As NullableSpan(Of T)
Dim input As Span(Of T)
Dim output As NullableSpan(Of T)
output = CType(input, NullableSpan(Of T))
static implicit operator NullableSpan<T> (
Span<T> value
)
- value SpanT
- The value that the NullableSpanT will contain.
NullableSpanTA
NullableSpanT that contains the specified value.