ParserHelpers.IsNewLine Method (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.
Namespace: System.Web.Razor.Parser
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Shared Function IsNewLine ( _
value As Char _
) As Boolean
'Usage
Dim value As Char
Dim returnValue As Boolean
returnValue = ParserHelpers.IsNewLine(value)
public static bool IsNewLine(
char value
)
public:
static bool IsNewLine(
wchar_t value
)
static member IsNewLine :
value:char -> bool
public static function IsNewLine(
value : char
) : boolean
Parameters
- value
Type: System.Char
The value to check.
Return Value
Type: System.Boolean
true if the specified character is a newline; otherwise, false.