Click or drag to resize

BaseProcessorDecodeBoolFromInt Method

A helper method for processors that need to decode bool from int.

Namespace: Orthogonal.NSettings
Assembly: Orthogonal.NSettings (in Orthogonal.NSettings.dll) Version: 3.0.5
Syntax
C#
public static bool DecodeBoolFromInt(
	int i
)

Parameters

i  Int32
The int value to be decoded back to a bool.

Return Value

Boolean
A bool false or true representing a i parameter value of 0 or any other value respectively.
See Also