Method IsNullOrEmpty
IsNullOrEmpty(String)
Returns true if value
is null or empty string.
Declaration
public static bool IsNullOrEmpty(this string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The string value to be checked. |
Returns
Type | Description |
---|---|
System.Boolean | Returns true if |
Remarks
This is a convenience method that just calls System.String.IsNullOrEmpty(System.String).