diff --git a/FastDBF/DbfHeader.cs b/FastDBF/DbfHeader.cs index ae5f151..7bde795 100644 --- a/FastDBF/DbfHeader.cs +++ b/FastDBF/DbfHeader.cs @@ -569,7 +569,8 @@ public void Read(BinaryReader reader) // type of reader. int nFileType = reader.ReadByte(); - if (nFileType != 0x03) + if (nFileType != 0x03 + && nFileType != 0x83) // allow reading of FoxBASE+/dBASE III PLUS, with memo throw new NotSupportedException("Unsupported DBF reader Type " + nFileType); // parse the update date information.