Compares the valid value lists.

Namespace:  PerpetuumSoft.ReportingServices.Viewer.Client
Assembly:  PerpetuumSoft.ReportingServices.Viewer.Client (in PerpetuumSoft.ReportingServices.Viewer.Client.dll) Version: 1.0.0.0

Syntax

C#
protected bool CompareValidValueLists(
	List<ValidValue> xList,
	List<ValidValue> yList
)
Visual Basic (Declaration)
Protected Function CompareValidValueLists ( _
	xList As List(Of ValidValue), _
	yList As List(Of ValidValue) _
) As Boolean
Visual C++
protected:
bool CompareValidValueLists(
	List<ValidValue^>^ xList, 
	List<ValidValue^>^ yList
)

Parameters

xList
Type: System.Collections.Generic..::.List<(Of <(ValidValue>)>)
The x list.
yList
Type: System.Collections.Generic..::.List<(Of <(ValidValue>)>)
The y list.

Return Value

true if lists are identical; otherwise false.

See Also