Click or drag to resize

DataType Enumeration

Data types available to a DataSet object.

Namespace: GSF.Data
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public enum DataType
Members
Member nameValueDescription
Boolean0 Boolean data type, Boolean.
Byte1 Unsigned 8-bit byte data type, Byte.
Char2 16-bit character data type, Char.
DateTime3 Date/time data type, DateTime.
Decimal4 Decimal data type, Decimal.
Double5 64-bit double precision floating point numeric data type, Double.
Guid6 Unsigned 128-bit Guid integer data type, Guid.
Int167 Signed 16-bit integer data type, Int16.
Int328 Signed 32-bit integer data type, Int32.
Int649 Signed 64-bit integer data type, Int64
SByte10 Signed byte data type, SByte.
Single11 32-bit single precision floating point numeric data type, Single.
String12 Character array data type, String.
TimeSpan13 Time-span data type, TimeSpan.
UInt1614 Unsigned 16-bit integer data type, UInt16.
UInt3215 Unsigned 32-bit integer data type, UInt32.
UInt6416 Unsigned 64-bit integer data type, UInt64.
Blob17 Unsigned byte array data type.
Object18 User defined/other data type.
See Also