├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── DBF2CSV └── DBF2CSV │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── SocialExplorer.DBF2CSV.csproj ├── DBFSamples ├── County M.dbf ├── State_vars1.dbf └── empty.dbf ├── FastDBF.sln ├── FastDBF ├── DbfColumn.cs ├── DbfDataTruncateException.cs ├── DbfFile.cs ├── DbfHeader.cs ├── DbfRecord.cs ├── Properties │ └── AssemblyInfo.cs └── SocialExplorer.FastDBF.csproj ├── LICENSE ├── README.md ├── SocialExplorer.FastDBF.Tests.Unit ├── DbfColumnTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SocialExplorer.FastDBF.Tests.Unit.csproj └── packages.config ├── TestDbfLib ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── TestFastDBF.csproj └── packages └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /DBF2CSV/DBF2CSV/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/DBF2CSV/DBF2CSV/Program.cs -------------------------------------------------------------------------------- /DBF2CSV/DBF2CSV/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/DBF2CSV/DBF2CSV/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DBF2CSV/DBF2CSV/SocialExplorer.DBF2CSV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/DBF2CSV/DBF2CSV/SocialExplorer.DBF2CSV.csproj -------------------------------------------------------------------------------- /DBFSamples/County M.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/DBFSamples/County M.dbf -------------------------------------------------------------------------------- /DBFSamples/State_vars1.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/DBFSamples/State_vars1.dbf -------------------------------------------------------------------------------- /DBFSamples/empty.dbf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FastDBF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF.sln -------------------------------------------------------------------------------- /FastDBF/DbfColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/DbfColumn.cs -------------------------------------------------------------------------------- /FastDBF/DbfDataTruncateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/DbfDataTruncateException.cs -------------------------------------------------------------------------------- /FastDBF/DbfFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/DbfFile.cs -------------------------------------------------------------------------------- /FastDBF/DbfHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/DbfHeader.cs -------------------------------------------------------------------------------- /FastDBF/DbfRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/DbfRecord.cs -------------------------------------------------------------------------------- /FastDBF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FastDBF/SocialExplorer.FastDBF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/FastDBF/SocialExplorer.FastDBF.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/README.md -------------------------------------------------------------------------------- /SocialExplorer.FastDBF.Tests.Unit/DbfColumnTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/SocialExplorer.FastDBF.Tests.Unit/DbfColumnTests.cs -------------------------------------------------------------------------------- /SocialExplorer.FastDBF.Tests.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/SocialExplorer.FastDBF.Tests.Unit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SocialExplorer.FastDBF.Tests.Unit/SocialExplorer.FastDBF.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/SocialExplorer.FastDBF.Tests.Unit/SocialExplorer.FastDBF.Tests.Unit.csproj -------------------------------------------------------------------------------- /SocialExplorer.FastDBF.Tests.Unit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/SocialExplorer.FastDBF.Tests.Unit/packages.config -------------------------------------------------------------------------------- /TestDbfLib/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/TestDbfLib/Program.cs -------------------------------------------------------------------------------- /TestDbfLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/TestDbfLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestDbfLib/TestFastDBF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/TestDbfLib/TestFastDBF.csproj -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialExplorer/FastDBF/HEAD/packages/repositories.config --------------------------------------------------------------------------------