如何将所有值NameValueCollection
作为单个字符串键入,
现在我使用以下方法来获取它:
public static string GetAllReasons(NameValueCollection valueCollection)
{
string _allValues = string.Empty;
foreach (var key in valueCollection.AllKeys)
_allValues += valueCollection.GetValues(key)[0] + System.Environment.NewLine;
return _allValues.TrimEnd(System.Environment.NewLine.ToCharArray());
}
任何简单的解决方案使用Linq
?