Click or drag to resize
IUserAccessiableInArray Method (DVar, DVar)
returns True\False if a given value is within a given array.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
bool InArray(
	DVar inValue,
	params DVar[] inArray
)

Parameters

inValue
Type: SurveyToGo.UserLogic.InterfacesDVar
Given value
inArray
Type: SurveyToGo.UserLogic.InterfacesDVar
Array name

Return Value

Type: Boolean
Boolean Value, true\false
Examples
Given the array: arr, with values {2,3,4}; InArray(7,arr); will return false, as 7 is not in the given array.
See Also