Validates that a collection object has at least one value in it.

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

Syntax

C#
public static void ValidateArgumentRequired(
	string name,
	ICollection value
)
Visual Basic
Public Shared Sub ValidateArgumentRequired ( _
	name As String, _
	value As ICollection _
)
Visual C++
public:
static void ValidateArgumentRequired(
	String^ name, 
	ICollection^ value
)

Parameters

name
Type: System..::..String
The name of the argument to validate.
value
Type: System.Collections..::..ICollection
The collection object.

See Also