に静的メソッドからリスト
private static void UpdateExportDate(List<string> lstWithdraw, List<string> lstUnit)
{
ServiceReference3.PSSWebServiceSoapClient pwssc = new ServiceReference3.PSSWebServiceSoapClient("PSSWebServiceSoap12");
((IContextChannel)pwssc.InnerChannel).OperationTimeout = new TimeSpan(2, 0, 0);
pwssc.UpdateInfo(lstWithdraw, lstUnit);
}
を、私はこのような非静的メソッドを持っています。
public void UpdateInfo(List<string> lstWithdraw, List<string> lstUnit)
{
UvAccountConversion uac = new UvAccountConversion();
}
cannot convert from 'System.Collections.Generic.List<string>' to 'string[]'
私はWHIリストを(削除しようとしている:私はプロジェクトを実行すると
が、それは誤りがあると述べていますchは2弦のみを渡すことを意味します)、それは成功しています。しかし、私はレコードを 'リスト'として渡したいと思います。
助けてください!
を試してみてください、あなたは含めるために何かを見逃したのか?どの行が実際のエラーを示していますか? –