NullableReadOnlySpanTTryGetValue Method
Gets the contained value.
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public bool TryGetValue(
out ReadOnlySpan<T> value
)
Public Function TryGetValue (
<OutAttribute> ByRef value As ReadOnlySpan(Of T)
) As Boolean
Dim instance As NullableReadOnlySpan
Dim value As ReadOnlySpan(Of T)
Dim returnValue As Boolean
returnValue = instance.TryGetValue(value)
public:
bool TryGetValue(
[OutAttribute] ReadOnlySpan<T>% value
)
- value ReadOnlySpanT
-
When this method returns, if the HasValue property is ,
contains the value of the Value property; otherwise, an empty
ReadOnlySpanT.
Boolean
The value of the
HasValue property.