SpanExtensionsIsValidUnicode Method
Checks whether the specified span is a valid Unicode string.
That is, when it does not contain unpaired high surrogates or non-character code points.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool IsValidUnicode(
this Span<char> span
)
<ExtensionAttribute>
Public Shared Function IsValidUnicode (
span As Span(Of Char)
) As Boolean
public:
[ExtensionAttribute]
static bool IsValidUnicode(
Span<wchar_t> span
)
[<ExtensionAttribute>]
static member IsValidUnicode :
span : Span<char> -> bool
- span SpanChar
- The span to check.
Boolean, if
span is a valid Unicode string; otherwise,
.In Visual Basic and C#, you can call this method as an instance method on any object of type
SpanChar. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).