.net中contains
时间: 2024-04-09 15:33:45 浏览: 113
C#集合框架全景:探索.NET中的类型宝库
在 .NET 中,`Contains` 是一个用于字符串和集对象的方法。它用于判断字符串是否包含指定的子字符串,或者集合中是否包含指定的元素。下面一些示例用法:
1. 字符串中的 `Contains` 方法:
```csharp
string str = "Hello, World!";
bool containsHello = str.Contains("Hello");
Console.WriteLine(containsHello); // 输出: True
bool containsFoo = str.Contains("Foo");
Console.WriteLine(containsFoo); // 输出: False
```
2. 集合中的 `Contains` 方法:
```csharp
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
bool containsThree = numbers.Contains(3);
Console.WriteLine(containsThree); // 输出: True
bool containsTen = numbers.Contains(10);
Console.WriteLine(containsTen); // 输出: False
```
希望这能帮助到你!如果你有其他问题,请随时提问。
阅读全文