标签:action [] [1] com lis bat add 分享图片 批量
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();
}
标签:action [] [1] com lis bat add 分享图片 批量
原文地址:http://www.cnblogs.com/NETSBW/p/7879055.html