C#中有没有类似于sql表达式“in”的效果?比如判断某数字有没有在一个数组里

 我来答
ronal10
2012-03-14 · TA获得超过593个赞
知道答主
回答量:88
采纳率:0%
帮助的人:60.4万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[10];
a[0] = 1;
a[1] = 2;
a[2] = 3;
a[3] = 4;
a[4] = 5;
a[5] = 6;
a[6] = 7;

if (a.Contains(1))
{
Console.WriteLine("number 1 exists");
}

if (a.Contains(2))
{
Console.WriteLine("number 2 exists");
}

if (a.Contains(8))
{
Console.WriteLine("number 8 exists");
}

Console.Read();

}
}
}
apolloge
2012-03-14 · TA获得超过653个赞
知道小有建树答主
回答量:559
采纳率:0%
帮助的人:431万
展开全部
List.Container()
http://msdn.microsoft.com/zh-cn/library/bhkz42b3(v=VS.80).aspx
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
NA009
2012-03-14 · TA获得超过579个赞
知道小有建树答主
回答量:331
采纳率:0%
帮助的人:264万
展开全部
数组有 Contain方法
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式