标签:system std spl 用法 自定义 express bsp tty trace
分割字符串 这样可以用一串字符串分割并且分为数组
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 });
标签:system std spl 用法 自定义 express bsp tty trace
原文地址:https://www.cnblogs.com/baimangguo/p/11484263.html