任何人都可以告訴我如何將下面的代碼轉換爲linq.I試圖使用合同名稱從web.config文件獲取端點地址。將foreach轉換爲linq
我需要爲每個循環轉換爲linq。
string csEndPoint =null;
ClientSection clientSettings = ConfigurationManager.GetSection("system.serviceModel/client") as ClientSection;
foreach (ChannelEndpointElement endpoint in clientSettings.Endpoints) {
if (endpoint.Contract == "CsWebService.ICsWebService") {
ccEndPoint = endpoint.Address.ToString();
break;
}
}
我敢肯定,你試過的東西。它在哪裏/如何失敗? –
我試過 string csEndPoint = clientSettings.Endpoints.FirstOrDefault(e => e.Contract ==「CsWebService.ICsWebService」)?. Address.ToString(); 但FirstOrDefault顯示錯誤ChannelEndpointElement doenot包含第一個或默認的定義 – poorna
下一次當您提出問題時,請顯示您嘗試的內容幷包含有關錯誤和失敗的任何信息。不可能猜到'clientSettings.Endpoints'只實現'IEnumerable',而不是'IEnumerable'。 –