C#中怎样判断一个List对象中是不是存在和指定变量的值相等的元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中怎样判断一个List对象中是不是存在和指定变量的值相等的元素相关的知识,希望对你有一定的参考价值。
参考技术A System.Collections.Generic.List<string> l = new System.Collections.Generic.List<string>();l.Add("aa");
if(l.Contains("aa"))
Response.Write("aa");
参考技术B 有关java的问题,这里都有很详细的讲解,你可以参考一下,方法有很多
参考资料:http://www.baidu.com/s?wd=%B1%B1%B7%E7%CD%F8&rsv_bp=0&rsv_spt=3&inputT=131 参考技术C LIST.CONTIAINS(ELEM) 参考技术D 循环拿出list中的每一个值跟你的变量的值比较
如何判断对象在list集合中是不是存在
list.Contains(string name) //检查集合是否包含指定名称的列, 返回bool型 参考技术A import java.util.*;class AlgorithmsDemo
public static void main(String args[])
List<Integer> ll = new LinkedList<Integer>();
ll.add(1);
ll.add(2);
ll.add(3);
Integer findValue=2;
if(ll.contains(findValue))
System.out.println("existed: " + findValue);
else System.out.println("not existed: " + findValue);
本回答被提问者采纳
以上是关于C#中怎样判断一个List对象中是不是存在和指定变量的值相等的元素的主要内容,如果未能解决你的问题,请参考以下文章