FileHelpers icon indicating copy to clipboard operation
FileHelpers copied to clipboard

The FileHelpers are a free and easy to use .NET library to read/write data from fixed length or delimited records in files, strings or streams

Results 114 FileHelpers issues
Sort by recently updated
recently updated
newest added

I noticed that FileHelpers Dynamic is not implemented under NET 6. I have writte a ClassBuilder, that works very well with the existing Delimited/Fixed engive: The code is here, feel...

``` public void BeginReadStream(TextReader reader) { BeginReadStream(new NewLineDelimitedRecordReader(reader)); } ``` ``` internal sealed class NewLineDelimitedRecordReader : IRecordReader { private readonly TextReader mReader; /// /// Read a file line by line...

Hello Marcos, I try to upgrade my solution from .Net Framework to .Net 6 and I have an error with FileHelpers saying that : **Reference to type 'ExcelStorageBase' claims it...

This projects documents and tracks the progress of FileHelpers towards version 4. # Major Goals - targeting .Net 5 - maybe .Net Standard 2.0 or 2.1 - maybe compiling a...

`EnumConverter` is internally using `Enum.Parse` method that assumes that the parsed value matches the name of the enum value. `System.Runtime.Serialization` has an `EnumMemberAttribute` (https://docs.microsoft.com/en-us/dotnet/api/system.runtime.serialization.enummemberattribute) that can be used to decorate...

Doc: "This method only uses the stream and does not close them after using it, you must do it." In version 2.0.0 this was the behavior. Now in version 3.5.1...

I have a CSV file that looks like this: "RECHNUNG";"DATUM";"KUNDENNR";"DEBITORKONTO" "12345";"04.08.2020 00:00:00";"12345";"" "12345";"04.08.2020 00:00:00";"12345";"" "12345";"04.08.2020 00:00:00";"12345";"" If my class only contains three or less properties, I cannot read the CSV...

I encountered this issue with South Ndebele (South Africa) ![image](https://user-images.githubusercontent.com/45399687/54863842-5760d200-4d56-11e9-8890-3d67c275891c.png) System.Globalization.CultureNotFoundException: Culture is not supported. Parameter name: culture 3072 (0x0c00) is an invalid culture identifier. Stack Trace: at System.Globalization.CultureInfo.InitializeFromCultureId(Int32 culture,...

Is it possible to update the header of a Fixed Record File at the end of the process? The layout is poorly designed and has the record count information in...