I need some advice for the best approach on this problem.
I am writing a data acquisition application. I am acquiring voltage data from a thermistor into my VB app which I want to correlate to a known temperature.
I have a .CSV file from the thermistor manufacturer that tells me the voltage response from the thermistor in 0.1 degree increments, which means that I basically have two columns (Temperature, Voltage), 500 elements deep.

I need to compare each voltage value acquired to the voltage column, and then display the corresponding temperature value.

Keeping in mind that I'm a novice programmer, what's the best way for me to do this? Can you point me to an example?

Cheers,

Chris