所有类别

  • C# 提取逗号分割的字符串

    C# 提取逗号分割的字符串 string s = "111,222,333"; List<string> list = new List<string>(s.Split(,));结果是list[0]=111;list[1]=222,list[3]=333

    2022-01-18 119

  • c#中DateTime?和DateTime

    datetime?类型在framework2.0后才有(vs2005以上版本).与datetime区别在于:datetime?可以为空,datetime不能为空,它必须随时间值存在.datetime a = null;这种写法将报错.datetime? b = null;这种写法不会报错.这个与int和int?的关系是一样的.datetime是指只能赋值为dat…

    2022-01-10 107

  • datetime.now() 和 datetime.utcnow()

    datetime.now() 和 datetime.utcnow()utcnow():读取的时间一直都是系统的“世界标准时间”,不管系统的本地时区是否设置,读取的时间不会随这些设置变化;now():读取的时间是系统的本地时间,也就是说,如果系统时区默认没有设置,那么读取的就是世界标准

    2021-12-21 160

  • 小程序提示错误 Cannot read property 'concat' of undefined

    小程序提示错误:Cannot read property concat of undefined;at pages/collage/list/list getList function;at api request success callback functionTypeError: Cannot read property concat of undefined这个其实很简单的。主要微信没有说明,就是你用来拼接的数组,需…

    2021-12-06 145

  • sql里的null和空的区别

    null表示为未知,未定义;空表示为空白,或者0;sql查询,排序时null在‘’的前面;定义字段为not null,写为空可以写入;null不可以用来比较,只能用is null判断;

    2021-11-30 165