如何在不使用LINQ的情况下在c#中将列表拆分为子列表
本文关键字:列表 拆分 LINQ 情况下 | 更新日期: 2023-09-27 18:12:01
我有一个字符串列表,我不知道它的大小。我想在不使用LINQ的情况下将其分成长度为100的组。
if (result["PASSED"].Count > 0){
// divide it into groups with length of 100 and then for each group do
// the following method.
handler.send ( result["PASSED"].ToArray (), smscontext );
}
public static List<List<string>> ListToSublists(List<string> lsSource)
{
List<List<string>> lsTarget = new List<List<string>>();
List<string> ls = null;
for (int i = 0; i < lsSource.Count; ++i)
{
if (i % 100 == 0)
{
if(ls != null)
lsTarget.Add(ls);
ls = new List<string>();
}
ls.Add(lsSource[i]);
}
if(ls != null)
lsTarget.Add(ls);
return lsTarget;
}
public static void main()
{
var yourlist = new List<string>();
yourlist.AddRange( /* Whatever */ );
List<List<string>> ls = ListToSublists(yourlist );
foreach (List<string> result in ls)
{
if (result.Count > 0)
{
handler.send(result.ToArray(), smscontext);
}
}
}