IsWhiteSpace Method

Html Agility Pack

Collapse imageExpand ImageCopy imageCopyHover image
Determines if the specified character is considered as a whitespace character.

Namespace: HtmlAgilityPack
Assembly: HtmlAgilityPack (in HtmlAgilityPack.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public static bool IsWhiteSpace(
	int c
)
Visual Basic
Public Shared Function IsWhiteSpace ( _
	c As Integer _
) As Boolean
Visual C++
public:
static bool IsWhiteSpace(
	int c
)

Parameters

c
Type: System..::..Int32
The character to check.

Return Value

true if if the specified character is considered as a whitespace character.

See Also