C# 中的 ContainsValue


在 C# 中使用 ContainsValue() 方法搜索 Dictionary 中的值。

创建一个 Dictionary 并添加元素 -

Dictionary<string, string> d = new Dictionary<string, string>();
d.Add("keyboard", "One");
d.Add("mouse", "Two");

现在,使用 ContainsValue() 方法查找特定值 -

d.ContainsValue("Two");

以下为完整代码 -

示例

 在线演示

using System;
using System.Collections.Generic;
using System.Linq;
class Program {
   static void Main() {
      Dictionary<string, string> d = new Dictionary<string, string>();
      d.Add("keyboard", "One");
      d.Add("mouse", "Two");
      // search for a value
      Console.WriteLine(d.ContainsValue("Two"));
   }
}

输出

True

更新于: 2020 年 6 月 22 日

82 次浏览

开启你的 事业

通过完成课程获得认证

马上开始
广告