.net 相关

//list获取某一列的和

decimal total = detailList.Sum(n => n.Amount);

---可空类型转换int?====int

int? test = null;         //定义一个int?赋值空
int a = test ?? 0;        //test??0  当test不为空时,直接返回值,为空时返回??后的值
posted on 2019-12-11 10:27  Smile向前  阅读(72)  评论(0编辑  收藏  举报