C# 如何判断字符串变量的值在字符串常量数组中是否存在?
时间: 2024-05-06 18:16:37 浏览: 83
判断某字符串是否存在
你可以使用 C# 中的 `Contains` 方法来判断一个字符串变量的值是否在字符串常量数组中存在。具体实现如下:
```csharp
string[] array = { "apple", "banana", "orange", "grape" };
string variable = "banana";
if (array.Contains(variable))
{
Console.WriteLine("变量的值在数组中存在");
}
else
{
Console.WriteLine("变量的值在数组中不存在");
}
```
在上面的代码中,我们首先定义了一个字符串常量数组 `array`,然后定义了一个字符串变量 `variable`,它的值为 "banana"。接着,在 if 语句中使用 `Contains` 方法判断 `array` 数组中是否包含 `variable` 变量的值,如果存在则输出 "变量的值在数组中存在",否则输出 "变量的值在数组中不存在"。
阅读全文