[]
Returns the first non-blank character in the string, or else null.
public static bool FirstNonBlankChar(string value, out char resultChar)
Public Shared Function FirstNonBlankChar(value As String, ByRef resultChar As Char) As Boolean
Type | Name | Description |
---|---|---|
string | value | The source string need to check. |
char | resultChar | The first character which source string 'value' is non-blank. |
Type | Description |
---|---|
bool | true if the first non-blank character;otherwise false |