StringExtensionsIsValidUnicode Method

Checks whether the specified string is a valid Unicode string. That is, when it does not contain unpaired high surrogates or non-character code points.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public static bool IsValidUnicode(
	this string s
)

Parameters

s  String
The string to check.

Return Value

Boolean
, if s is a valid Unicode string; otherwise, .

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. 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).

See Also