ParserHelpers.IsNewLine Method

Definition

Overloads

IsNewLine(Char)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.

IsNewLine(String)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.

IsNewLine(Char)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.

public static bool IsNewLine (char value);
static member IsNewLine : char -> bool
Public Shared Function IsNewLine (value As Char) As Boolean

Parameters

value
Char

The value to check.

Returns

true if the specified character is a newline; otherwise, false.

Applies to

IsNewLine(String)

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Determines whether the specified value is a newline.

public static bool IsNewLine (string value);
static member IsNewLine : string -> bool
Public Shared Function IsNewLine (value As String) As Boolean

Parameters

value
String

The value to check.

Returns

true if the specified character is a newline; otherwise, false.

Applies to