C# 的一些便捷用法

2021-02-04 03:13

阅读:670

标签:system   std   spl   用法   自定义   express   bsp   tty   trace   

分割字符串 这样可以用一串字符串分割并且分为数组
string[] arr = System.Text.RegularExpressions.Regex.Split(str, "\r\n");

dynamic 动态类型  List 可以自定义内容并绑定列 

Listdynamic> dy = new Listdynamic>();
dy.Add(new
                        {
                            CustomerId = c.CustomerId,
                            FullName = c.FullName,
                            TraceUserName = c.TraceUserName,
                            CustDegreeId = c.CustDegreeId,
                            CustTypeId = c.CustTypeId
                        });

 

C# 的一些便捷用法

标签:system   std   spl   用法   自定义   express   bsp   tty   trace   

原文地址:https://www.cnblogs.com/baimangguo/p/11484263.html


评论


亲,登录后才可以留言!