Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor fix to whitespace. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | newJulianDay |
Files: | files | file ages | folders |
SHA1: |
b276a44703678c66847d67fa1b7229e6 |
User & Date: | mistachkin 2014-11-01 18:46:11.673 |
Context
2014-11-01
| ||
18:59 | Improve the precision of the new tests. check-in: 0d4a166b9a user: mistachkin tags: newJulianDay | |
18:46 | Minor fix to whitespace. check-in: b276a44703 user: mistachkin tags: newJulianDay | |
18:44 | Update version history docs. check-in: 8bc9e1d65d user: mistachkin tags: newJulianDay | |
Changes
Changes to System.Data.SQLite/SQLiteConvert.cs.
︙ | ︙ | |||
212 213 214 215 216 217 218 | byte[] byteArray = new byte[nativestringlen]; Marshal.Copy(nativestring, byteArray, 0, nativestringlen); return _utf8.GetString(byteArray, 0, nativestringlen); } | < < | 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | byte[] byteArray = new byte[nativestringlen]; Marshal.Copy(nativestring, byteArray, 0, nativestringlen); return _utf8.GetString(byteArray, 0, nativestringlen); } #endregion /////////////////////////////////////////////////////////////////////////// #region DateTime Conversion Functions #region New Julian Day Conversion Methods /// <summary> |
︙ | ︙ |