NDbfReader
NDbfReader copied to clipboard
A fully managed reader of DBF files. Fast and lightweight with async support.
Maybe the following could be a candidate for a new feature in a future release (this is not a bug!) : Integrate a new option to read table rows with...
I am trying to read bad data from a DateTime column. Because it cannot parse it to a DateTime it breaks, and I cannot find a suitable alternative method to...
StringColumn.cs文件中36行处方法DoLoad,修改个bug。之前一直解析乱码,修改后就好了。如下: protected override string DoLoad(byte[] buffer, int offset, Encoding encoding) { if (_parsedCharsBuffer == null) { _parsedCharsBuffer = new char[Size]; } var bytes = buffer.Skip(offset).Take(Size).ToArray(); var result = encoding.GetString(bytes).Trim('\0').Trim(' ');...