NAnt SDK Documentation - v0.85-nightly-2005-11-09

StringUtils.IsNullOrEmpty Method 

[This is preliminary documentation and subject to change.]

Indicates whether or not the specified String is a null reference (Nothing in Visual Basic) or an Empty string.

[Visual Basic]
Public Shared Function IsNullOrEmpty( _
   ByVal value As String _
) As Boolean
[C#]
public static bool IsNullOrEmpty(
   string value
);

Parameters

value
The value to check.

Return Value

true if value is a null reference (Nothing in Visual Basic) or an empty string (""); otherwise, false.

Remarks

Missing <remarks> documentation for M:NAnt.Core.Util.StringUtils.IsNullOrEmpty(System.String)

See Also

StringUtils Class | NAnt.Core.Util Namespace