Click or drag to resize
Grid Solutions Framework

AggregateFunctionsAny Method

Gets flag that determines if any of the values in the array evaluate to true for the provided comparisonExpr.

Namespace: DynamicCalculator
Assembly: DynamicCalculator (in DynamicCalculator.dll) Version: 2.4.182-beta
Syntax
public static bool Any(
	double[] array,
	string comparisonExpr
)
View Source

Parameters

array  Double
Source value array.
comparisonExpr  String
Comparison expression, e.g., "> 0".

Return Value

Boolean
Cumulative boolean result for any values evaluating to true for provided comparison expression.
Remarks
Expression is compiled with support for Math and DateTime types so related static functions and constants can be used in expressions, e.g., ">= 2 * PI".
See Also