我需要从嵌套列表中向特定列表添加一个值。如果有任何列表包含一个名为 inputString 的值,则将其添加到该列表中;如果有,则将结果添加到该列表中;如果否,则使用结果创建新列表。代码如下。
foreach(List<string> List in returnList )
{
if (List.Contains(inputString))
{
//add a string called 'result' to this List
}
else
{
returnList.Add(new List<string> {result});
}
}