StringCollection类是.NET Framework类库的新添加,它表示字符串的集合。 StringCollection类在System.Collections.Specialized命名空间中定义。
StringCollection.Contains(String)方法用于检查指定的字符串是否在StringCollection中。
句法:
public bool Contains (string value);
在这里, value是要在StringCollection中找到的字符串。该值可以为空。
返回值:如果在StringCollection中找到值,则此方法返回true ,否则返回false 。
笔记:
- Contains方法可以在执行进一步的操作之前确认字符串的存在。
- 此方法执行线性搜索,因此,此方法是O(n)运算,其中n是Count。
下面的程序说明StringCollection.Contains(String)方法的用法:
范例1:
// C# code to check if the specified
// string is in the StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// creating a string array named myArr
String[] myArr = new String[] { "A", "B", "C", "D", "E" };
// Copying the elements of a string
// array to the end of the StringCollection.
myCol.AddRange(myArr);
// checking if StringCollection
// Contains "A"
Console.WriteLine(myCol.Contains("A"));
}
}
输出:
True
范例2:
// C# code to check if the specified
// string is in the StringCollection
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// creating a StringCollection named myCol
StringCollection myCol = new StringCollection();
// creating a string array named myArr
String[] myArr = new String[] { "2", "3", "4", "5", "6" };
// Copying the elements of a string
// array to the end of the StringCollection.
myCol.AddRange(myArr);
// checking if StringCollection
// Contains "8"
Console.WriteLine(myCol.Contains("8"));
}
}
输出:
False
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.specialized.stringcollection.contains?view=netframework-4.7.2