Method IsOnlyAlphas
IsOnlyAlphas(String)
Returns true if value
contains only (latin) alphabetic characters (A-Z, a-z).
Declaration
public static bool IsOnlyAlphas(this string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The string to test the characters of. |
Returns
Type | Description |
---|---|
System.Boolean | True if |
Remarks
Returns false if value
is null or empty string.