标签:方法 code sage int service style 参数错误 nta 使用数组
方式一:
serviceBillList = serviceBillList.Where(b => new int[]{ 1,2,3}.Contains(b.Status));
方式二:
if (!new int[] { 1, 2, 3 }.Contains(item.Status)) { model.Status = "fail"; model.Message = "提交状态参数错误。"; return model; }
标签:方法 code sage int service style 参数错误 nta 使用数组
原文地址:https://www.cnblogs.com/firstcsharp/p/11230911.html