Validates that the string array contains at least one element which is not an empty string.

Namespace: Nehta.VendorLibrary.Common
Assembly: Nehta.VendorLibrary.Common (in Nehta.VendorLibrary.Common.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static void ValidateArgumentRequired(
	string name,
	string[] values
)
Visual Basic
Public Shared Sub ValidateArgumentRequired ( _
	name As String, _
	values As String() _
)
Visual C++
public:
static void ValidateArgumentRequired(
	String^ name, 
	array<String^>^ values
)

Parameters

name
Type: System..::..String
The name of the argument to validate.
values
Type: array<System..::..String>[]()[][]
The value of the argument to validate.

See Also