Type mapping¶
Below is a table mapping the C# datatypes to kdb+ datatypes
| C# Type | Q/KDB type |
|---|---|
| System.Boolean | boolean |
| System.Byte | byte |
| System.Int16 | short |
| System.Int32 | int |
| System.Int64 | long |
| System.Single | real |
| System.Double | float |
| System.String | symbol |
| System.Char[] | char vector (string) |
| System.Char | char |
| DeltaApiCore.Connections.Kdb.Support.Date | date |
| System.DateTime | datetime |
| DeltaApiCore.Connections.Kdb.Support.Month | month |
| DeltaApiCore.Types.QTimestamp | timestamp |
| DeltaApiCore.Connections.Kdb.Support.Minute | minute |
| DeltaApiCore.Connections.Kdb.Support.Second | second |
| System.TimeSpan | time |
| DeltaApiCore.Types.QTimespan | timespan |
| System.Guid | guid |
| DeltaApiCore.Connections.Kdb.Support.Dict | dictionary |
| DeltaApiCore.Connections.Kdb.Support.Flip | table |