このファイル (indexes.csv) から情報を取得しようとしています:
このクラスのインスタンスに:
class Table
{
Dictionary<String, double> _regionTimeValues;
String _region;
public Table(String region)
{
_regionTimeValues = new Dictionary<string, double>();
_region = region;
suckInValues();
}
private void suckInValues()
{
//Go find File, get the appropriate Values for _region
//add each value found in the csv file that applies, indexed by yearQuarter
//Example: _regionTimeValues.Add("2013Q1", 1.1 );
}
internal double locateRelevantValue(string yearQuarter)
{
double locatedValue = 0.0;
_regionTimeValues.TryGetValue(yearQuarter,out locatedValue);
return locatedValue;
}
辞書に特定の地域のデータのみを入力したい。
csvファイルからこれを行うにはどうすればよいですか?
編集
地域の例は、"Dalton" のような文字列値です。