NullableSpanTInequality Operator
Namespace: Ookii.CommonAssembly: Ookii.Common (in Ookii.Common.dll) Version: 1.0.0+7c2900b8a16cd8ae46bdd79d8f105034712c5fa3
public static bool operator !=(
NullableSpan<T> left,
NullableSpan<T> right
)
Public Shared Operator <> (
left As NullableSpan(Of T),
right As NullableSpan(Of T)
) As Boolean
Dim left As NullableSpan(Of T)
Dim right As NullableSpan(Of T)
Dim returnValue As Boolean
returnValue = (left <> right)
public:
static bool operator !=(
NullableSpan<T> left,
NullableSpan<T> right
)
- left NullableSpanT
- The first value to compare.
- right NullableSpanT
- The second value to compare.
Boolean if the values are not equal; otherwise,
.