Пример #1
0
 /// <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));
 }
Пример #2
0
 /// <summary>
 /// Determines whether the channel data type is numeric.
 /// </summary>
 public static bool IsNumeric(this Cnl cnl)
 {
     return(DataTypeID.IsNumeric(cnl.DataTypeID));
 }