ReadOnlySpanPair<TFirst, TSecond>.Deconstruct Method
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public void Deconstruct(
out ReadOnlySpan<TFirst> first,
out ReadOnlySpan<TSecond> second
)
Public Sub Deconstruct (
<OutAttribute> ByRef first As ReadOnlySpan(Of TFirst),
<OutAttribute> ByRef second As ReadOnlySpan(Of TSecond)
)
Dim instance As ReadOnlySpanPair
Dim first As ReadOnlySpan(Of TFirst)
Dim second As ReadOnlySpan(Of TSecond)
instance.Deconstruct(first, second)
public:
void Deconstruct(
[OutAttribute] ReadOnlySpan<TFirst>% first,
[OutAttribute] ReadOnlySpan<TSecond>% second
)
Parameters
- first ReadOnlySpan<TFirst>
- Receives the first value.
- second ReadOnlySpan<TSecond>
- Receives the second value.