我定义了一本字典。
Dictionary<string, string> dataSource;
有一个函数以这样的方式定义,这个字典将被填充至少一个。
dataSource = l2ListText
.Zip(l2ListValue, (lText, lValue) => new { lText, lValue })
.ToDictionary(x => x.lValue, x => x.lText);
l2ListText
并且l2ListValue
是List<String>
这个填充的datasource
字典用作列表框的数据源。
第二轮,它检查一个列表框是否为空,当它不为空时,我想将值附加到它dataSource
并再次将它作为数据源重新分配给列表框。
我发现很难做到这一点,请帮助。