本文整理汇总了C#中Model.List.Concat方法的典型用法代码示例。如果您正苦于以下问题:C# List.Concat方法的具体用法?C# List.Concat怎么用?C# List.Concat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Model.List
的用法示例。
在下文中一共展示了List.Concat方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateRouteFromMultiLineString
public void CreateRouteFromMultiLineString(DJ_TourGroup group, string multiLineString, out string errMsg)
{
errMsg = string.Empty;
group.Routes.Clear();
IList<DJ_Route> allRoutes = new List<DJ_Route>();
string[] arrSingleLine = multiLineString.Split(Environment.NewLine.ToCharArray()).Where(x => !string.IsNullOrWhiteSpace(x)).ToArray();
Dictionary<EnterpriseType, IList<String>> entDicts = new Dictionary<EnterpriseType, IList<string>>();
for (int i = 1; i <= arrSingleLine.Length; i++)
{
int dayNo = i;
string currentLine = arrSingleLine[i - 1];
string[] diffEnts = currentLine.Split(new char[] { ';', ';' });
if (diffEnts.Length > 2 || diffEnts.Length == 0)
{
errMsg = "格式错误:请用分号将景点和宾馆隔开." + currentLine;
return;
}
List<string> entNames = diffEnts[0].Split(new char[] { '\\', '\', '、' }).Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
entDicts.Add(EnterpriseType.景点, entNames);
List<string> entHotels = new List<string>();
if (diffEnts.Length == 2)
{
entHotels = diffEnts[1].Split(new char[] { '\\', '\', '、' }).Where(x => !string.IsNullOrWhiteSpace(x)).ToList();
entDicts.Add(EnterpriseType.宾馆, entNames);
}
IList<DJ_Route> dayRoutes = CreateRouteFromNameList(dayNo, entDicts, out errMsg).Cast<DJ_Route>().ToList();
allRoutes = allRoutes.Concat(dayRoutes).ToList();
}
foreach (DJ_Route r in allRoutes)
{
group.Routes.Add(r);
}
// group.Routes = allRoutes;
// return allRoutes;
}