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.OriginAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic enum DeserializedDataType
Members| Member name | Value | Description | 
|---|
| Unknown | 0 | 
            Value not set yet, or type is unknown.
             | 
| Text | 1 | Text | 
| TextAndNumber | 2 | Text and Double | 
| Complex | 3 | Complex (2 x double) | 
| Double | 4 | Double (8 byte) | 
| Double10 | 5 | Double (10 byte) | 
| Single | 6 | Single (4 byte) | 
| Int32 | 7 | Signed int (4 byte) | 
| UInt32 | 8 | Unsigned int (4 byte) | 
| Int16 | 9 | Signed int (2 byte) | 
| UInt16 | 10 | Unsigned int (2 byte) | 
| SByte | 11 | Signed int (1 byte) | 
| Byte | 12 | Unsigned int (1 byte) | 
See Also