码迷,mamicode.com
首页 > 编程语言 > 详细

在方法体内使用数组

时间:2019-07-23 13:20:44      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:方法   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!