分割字符串 这样可以用一串字符串分割并且分为数组
string[] arr = System.Text.RegularExpressions.Regex.Split(str, "\r\n");
dynamic 动态类型 List<dynamic> 可以自定义内容并绑定列
List<dynamic> dy = new List<dynamic>(); dy.Add(new{CustomerId = c.CustomerId,FullName = c.FullName,TraceUserName = c.TraceUserName,CustDegreeId = c.CustDegreeId,CustTypeId = c.CustTypeId});