ハッシュテーブルに.txtファイルの文字列[]配列を埋めようとしています。 ディレクトリ、ハッシュテーブルを書き込むことはできません。 Im gettin a error =構文エラー。期待値は 私は少し私を導くことを願っています。 最初のレンガージュ。あなたはString []配列からハッシュテーブルにキーと値を追加する[] C#
あなたもLINQでこれを解決することができ、アレイ全体の代わりにアイテムを追加したいので、
static Hashtable GetHashtable()
{
// Create and return new Hashtable.
Hashtable ht_rut = new Hashtable();
//Create a string from all the text
string rutcompleto = System.IO.File.ReadAllText(@"C:\datos rut.txt");
//create an array from the string split by ,
String[] rutArr = rutcompleto.Split(',');
//create a int key for the hashtable
int key = 1;
foreach (var item in rutArr)
{
ht_rut.Add(key,rutArr[]);
key = key + 1;
}
return ht_rut;
}
}
これは完全に働いた、私のクエリは、秀おかげで間違っていました – Vlad