1. 程式人生 > >批量添加

批量添加

批量 inf 分享 res spl 分享圖片 bsp convert images

技術分享圖片

public ActionResult ImportData(string str)
{
string[] strList = str.Split(‘|‘);
List<BatchInfo> list = new List<BatchInfo>();
for (int i = 0; i < strList.Length; i++)
{
BatchInfo model = new BatchInfo();
model.Name = strList[i].Split(‘,‘)[0].ToString();
model.Age = Convert.ToInt32(strList[i].Split(‘,‘)[1].ToString());
list.Add(model);
}

return View();
}

批量添加