Click or drag to resize
Grid Solutions Framework

AggregateFunctionsAll Method

Gets flag that determines if all 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 All(
	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 all 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