/// <summary> /// Determines whether the channel represents an array of numbers. /// </summary> public static bool IsNumericArray(this Cnl cnl) { return(cnl.DataLen > 1 && DataTypeID.IsNumeric(cnl.DataTypeID)); }
/// <summary> /// Determines whether the channel data type is numeric. /// </summary> public static bool IsNumeric(this Cnl cnl) { return(DataTypeID.IsNumeric(cnl.DataTypeID)); }