StringUtils.

IsNullOrEmpty(string) Method

Summary

Indicates whether or not the specified string is null or an System.String.Empty string.
Assembly
NAnt.Core.dll
Namespace
NAnt.Core.Util
Containing Type
StringUtils

Syntax

[Obsolete("StringUtils.IsNullOrEmpty method is depreciated. Use System.String.IsNullOrEmpty(string) instead.")]
public static bool IsNullOrEmpty(string value)

Attributes

Type Description
ObsoleteAttribute

Parameters

Name Type Description
value string The value to check.

Return Value

Type Description
bool true if value is null or an empty string (""); otherwise, false.