次のコードはコンパイルしたくありません。エラーメッセージが表示されます:
'System.Collections.Generic.List.Add(string [])に最適なオーバーロードされたメソッドの一致には、いくつかの無効な引数があります
しかし、何が悪いのかわかりません。助言がありますか?
public static List<string[]> ReadFromDelimitedFile (string Path)
{
int i=0;
List<string[]> AllContracts = new List<string[]>();
using (TextFieldParser parser = new TextFieldParser(Path))
{
parser.Delimiters = new string[] { "\t" };
while (true)
{
AllContracts.Add(i)= parser.ReadFields();
if (AllContracts.Add(i) == null)
{
break;
}
i++;
}
}
return AllContracts;
}