Click here to Skip to main content
15,886,199 members
Articles / Web Development / ASP.NET

A Fast CSV Reader

Rate me:
Please Sign up or sign in to vote.
4.93/5 (545 votes)
13 Jan 2016MIT8 min read 8.4M   164.8K   1.5K  
A reader that provides fast, non-cached, forward-only access to CSV data.
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--This file represents the results of running a test suite-->
<test-results name="C:\Projects\CodeProject\CsvReader\src\LumenWorks.Framework.Tests.Unit\bin\Release\LumenWorks.Framework.Tests.Unit.dll" total="3" errors="0" failures="0" not-run="0" inconclusive="0" ignored="0" skipped="0" invalid="0" date="2011-07-06" time="00:45:16">
  <environment nunit-version="2.5.5.10112" clr-version="2.0.50727.5444" os-version="Microsoft Windows NT 6.1.7601 Service Pack 1" platform="Win32NT" cwd="C:\Projects\CodeProject\CsvReader\src" machine-name="LENOVO" user="Bazz" user-domain="lenovo" />
  <culture-info current-culture="en-US" current-uiculture="en-US" />
  <test-suite type="Assembly" name="C:\Projects\CodeProject\CsvReader\src\LumenWorks.Framework.Tests.Unit\bin\Release\LumenWorks.Framework.Tests.Unit.dll" executed="True" result="Success" success="True" time="0.062" asserts="0">
    <results>
      <test-suite type="Namespace" name="LumenWorks" executed="True" result="Success" success="True" time="0.058" asserts="0">
        <results>
          <test-suite type="Namespace" name="Framework" executed="True" result="Success" success="True" time="0.058" asserts="0">
            <results>
              <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="0.057" asserts="0">
                <results>
                  <test-suite type="Namespace" name="Unit" executed="True" result="Success" success="True" time="0.056" asserts="0">
                    <results>
                      <test-suite type="Namespace" name="IO" executed="True" result="Success" success="True" time="0.054" asserts="0">
                        <results>
                          <test-suite type="Namespace" name="Csv" executed="True" result="Success" success="True" time="0.052" asserts="0">
                            <results>
                              <test-suite type="TestFixture" name="CsvReaderTest" executed="True" result="Success" success="True" time="0.049" asserts="0">
                                <results>
                                  <test-suite type="ParameterizedTest" name="GetFieldHeaders_WithEmptyHeaderNames" executed="True" result="Success" success="True" time="0.043" asserts="0">
                                    <results>
                                      <test-case name="LumenWorks.Framework.Tests.Unit.IO.Csv.CsvReaderTest.GetFieldHeaders_WithEmptyHeaderNames(&quot;AnotherName&quot;)" executed="True" result="Success" success="True" time="0.032" asserts="12" />
                                      <test-case name="LumenWorks.Framework.Tests.Unit.IO.Csv.CsvReaderTest.GetFieldHeaders_WithEmptyHeaderNames(&quot;&quot;)" executed="True" result="Success" success="True" time="0.000" asserts="12" />
                                      <test-case name="LumenWorks.Framework.Tests.Unit.IO.Csv.CsvReaderTest.GetFieldHeaders_WithEmptyHeaderNames(null)" executed="True" result="Success" success="True" time="0.000" asserts="12" />
                                    </results>
                                  </test-suite>
                                </results>
                              </test-suite>
                            </results>
                          </test-suite>
                        </results>
                      </test-suite>
                    </results>
                  </test-suite>
                </results>
              </test-suite>
            </results>
          </test-suite>
        </results>
      </test-suite>
    </results>
  </test-suite>
</test-results>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Architect
Canada Canada
Sébastien Lorion is software architect as day job.

He is also a musician, actually singing outside the shower Smile | :)

He needs constant mental and emotional stimulation, so all of this might change someday ...

Comments and Discussions