C# 的一些便捷用法
2021-02-04 03:13
标签:system std spl 用法 自定义 express bsp tty trace dynamic 动态类型 List C# 的一些便捷用法 标签:system std spl 用法 自定义 express bsp tty trace 原文地址:https://www.cnblogs.com/baimangguo/p/11484263.html分割字符串 这样可以用一串字符串分割并且分为数组
string[] arr = System.Text.RegularExpressions.Regex.Split(str, "\r\n");
Listdynamic> dy = new Listdynamic>();
dy.Add(new
{
CustomerId = c.CustomerId,
FullName = c.FullName,
TraceUserName = c.TraceUserName,
CustDegreeId = c.CustDegreeId,
CustTypeId = c.CustTypeId
});