我有这样的代码:
List<Pair<string, string>> docs = new List<Pair<string, string>>();
iErr = ftpconnect.ListAllDocuments(docs, build.BuildId.ToString());
ListAllDocuments 的接口原型为:
Int32 ListAllDocuments(List<Pair<string, string>> DocList, string Path);
我得到一个错误
错误 21:“OperatorPanelWrapper.FtpTransportLibWrapper.ListAllDocuments(System.Collections.Generic.List<OperatorPanel.Pair<string,string>>, string)”的最佳重载方法匹配有一些无效参数
为什么我会收到此错误?