Click or drag to resize

DeserializedDataType Enumeration

Designates the data type that was used to deserialize the data. This does not tell you how to interpret the data. For instance, double can also interpreted as DateTime, Time, etc.

Namespace: Altaxo.Serialization.Origin
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public enum DeserializedDataType
Members
Member nameValueDescription
Unknown0 Value not set yet, or type is unknown.
Text1Text
TextAndNumber2Text and Double
Complex3Complex (2 x double)
Double4Double (8 byte)
Double105Double (10 byte)
Single6Single (4 byte)
Int327Signed int (4 byte)
UInt328Unsigned int (4 byte)
Int169Signed int (2 byte)
UInt1610Unsigned int (2 byte)
SByte11Signed int (1 byte)
Byte12Unsigned int (1 byte)
See Also