03.01.2015 Views

Complete set: Intro to C - Bill Buchanan

Complete set: Intro to C - Bill Buchanan

Complete set: Intro to C - Bill Buchanan

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

class ArrayExample02<br />

{<br />

static void fillData(ArrayList v)<br />

{<br />

int i=0;<br />

FileInfo theSourceFile = new FileInfo("..\\..\\test.csv");<br />

StreamReader reader = theSourceFile.OpenText();<br />

}<br />

string text;<br />

do<br />

{<br />

text=reader.ReadLine();<br />

if (text==null) break;<br />

foreach (string substring in text.Split(','))<br />

{<br />

v.Add(Convert.ToDouble(substring));<br />

i++;<br />

}<br />

} while (text != null);<br />

reader.Close();<br />

static void showData(ArrayList v)<br />

{<br />

int i;<br />

for (i=0;i

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!