├── .gitignore ├── LICENSE ├── README.md ├── src └── FileIO │ ├── Employee.cs │ ├── FileIO.csproj │ ├── WithAsyncStreams.cs │ ├── WithCsvHelperLib.cs │ └── WithPipeLines.cs └── tests └── FileIO.Benchmarks ├── .dockerignore ├── Dockerfile ├── Employees.csv ├── FileIO.Benchmarks.csproj ├── FileIOTest.cs └── Program.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/README.md -------------------------------------------------------------------------------- /src/FileIO/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/src/FileIO/Employee.cs -------------------------------------------------------------------------------- /src/FileIO/FileIO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/src/FileIO/FileIO.csproj -------------------------------------------------------------------------------- /src/FileIO/WithAsyncStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/src/FileIO/WithAsyncStreams.cs -------------------------------------------------------------------------------- /src/FileIO/WithCsvHelperLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/src/FileIO/WithCsvHelperLib.cs -------------------------------------------------------------------------------- /src/FileIO/WithPipeLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/src/FileIO/WithPipeLines.cs -------------------------------------------------------------------------------- /tests/FileIO.Benchmarks/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/tests/FileIO.Benchmarks/.dockerignore -------------------------------------------------------------------------------- /tests/FileIO.Benchmarks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/tests/FileIO.Benchmarks/Dockerfile -------------------------------------------------------------------------------- /tests/FileIO.Benchmarks/Employees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/tests/FileIO.Benchmarks/Employees.csv -------------------------------------------------------------------------------- /tests/FileIO.Benchmarks/FileIO.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/tests/FileIO.Benchmarks/FileIO.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/FileIO.Benchmarks/FileIOTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/tests/FileIO.Benchmarks/FileIOTest.cs -------------------------------------------------------------------------------- /tests/FileIO.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goldytech/CSharpPerformanceBoosters/HEAD/tests/FileIO.Benchmarks/Program.cs --------------------------------------------------------------------------------