我有list
一些字符串,我想在循环中动态地为每个字符串创建一个列表。
主要思想是通过循环从中获取每个字符串,list
并以该字符串作为名称创建一个列表。然后向其中添加一些数据。
例子:
List<string> names = new List<string>(); // this is the main list with strings
foreach (string nm in name)
{
// Here create a new list with this name
// Add data to the list
}
// Now, compare all of them to find duplicate data
// Give message if any duplicate data found
更新:基本上,我将list
在运行时使用一些数据库 API 添加数据,字符串名称是该 API 中的键。因此,对于主列表中的每个名称,我将从数据库中检索一些数据,使用该名称创建一个列表并向其中添加数据。稍后我们会将它们放在一起进行比较。所以基本问题仍然是如何list
在运行时创建这些 s。