From 728cec5123785f9c345fd7c77fe68ae357f578d8 Mon Sep 17 00:00:00 2001 From: Christian Pfanner Date: Thu, 1 Feb 2018 16:06:28 +0100 Subject: [PATCH] allow reading of filetype FoxBASE+/dBASE III PLUS, with memo --- FastDBF/DbfHeader.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.