Click or drag to resize

CommonNotNull Method

Returns value if not null; otherwise nonNullValue.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.266-beta+c6b78f50c57a6e00a35ffa6b1d344e516617d5cd
Syntax
public static Object NotNull(
	Object value,
	Object nonNullValue
)
View Source

Parameters

value  Object
Value to test.
nonNullValue  Object
Value to return if primary value is null.

Return Value

Object
value if not null; otherwise nonNullValue.
Remarks
This function is useful when using evaluated code parsers based on older versions of .NET, e.g., the RazorEngine or the ExpressionEvaluator.
See Also