c#函数
字符串函数
string.IsNullOrEmpty();
C#使用UUID生成ID,id中有“-”符号存在
string id = System.Guid.NewGuid().ToString();
C#使用UUID生成ID,纯字母+数字。
string id = System.Guid.NewGuid().ToString(“N”);
当前时间
DateTime.Now.ToString();
指定时间
new DateTime(2020, 7, 1);
Unix转为dateTime
var update_time = 1572507603;
var updateTime1 = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)).AddSeconds(update_time);
判断指定字符串是null还是空字符串
string.IsNullOrEmpty(searchKey)
去掉下划线并转为小写
“Hello_Word”.Replace("_", “”).ToLower() :
转为小写
.ToLower();
生成一个唯一的编码
string uuid = Guid.NewGuid().ToString();