在 C# 中检查数组是否包含给定值
本教程将介绍在 C# 中检查数组内部元素的方法。
使用 C# 中的 Array.IndexOf()
函数获取数组中元素的索引
C# 中的 Array.IndexOf(array, element)
函数获取数组 array
中元素 element
的索引。如果数组中不存在该元素,则返回 -1
。
以下代码示例向我们展示了如何使用 C# 中的 Array.Indexof()
函数获取数组中元素的索引。
using System;
namespace check_element_in_array {
class Program {
static void Main(string[] args) {
string[] stringArray = { "value1", "value2", "value3", "value4" };
string value = "value3";
int index = Array.IndexOf(stringArray, value);
if (index > -1) {
Console.WriteLine("{0} found in the array at index {1}", value, index);
} else {
Console.WriteLine("Value not found");
}
}
}
}
输出:
value3 found in the array at index 2
我们使用 C# 中的 Array.IndexOf()
函数在数组 stringArray
中显示元素 value3
的索引。上面的代码在找到值的情况下显示元素的索引,在数组中找不到值的情况下显示 value not found
。
使用 C# 中的 Array.FindIndex()
函数获取数组中元素的索引
如果元素存在于数组中,C# 中的 Array.FindIndex(array, pattern)
函数获取与数组 array
中的模式 pattern
相匹配的元素索引。如果数组中不存在该元素,则返回 -1
。我们可以使用 lambda 表达式在 Array.FindIndex()
函数中指定 pattern
参数。
以下代码示例向我们展示了如何在 C# 中使用 Array.FindIndex()
函数和 lambda 表达式来获取数组中元素的索引。
using System;
namespace check_element_in_array {
class Program {
static void Main(string[] args) {
string[] stringArray = { "value1", "value2", "value3", "value4" };
string value = "value3";
var index = Array.FindIndex(stringArray, x => x == value);
if (index > -1) {
Console.WriteLine("{0} found in the array at index {1}", value, index);
} else {
Console.WriteLine("Value not found");
}
}
}
}
输出:
value3 found in the array at index 2
我们使用 C# 中的 Array.IndexOf()
函数在数组 stringArray
中显示元素 value3
的索引。上面的代码在找到值的情况下显示元素的索引,在数组中找不到值的情况下显示 value not found
。
使用 C# 中的 Array.Exists()
检查数组中的元素
如果只需要检查数组中是否存在某个元素,而又不关心该元素所在的数组的索引,则可以使用 Array.Exists()
函数,位于 C# 中。Array.Exists()
函数返回一个布尔值,如果该元素存在于数组中,则为 true
;如果该元素不存在于数组中,则为 false
。
以下代码示例向我们展示了如何使用 C# 中的 Array.Exists()
函数检查数组中的元素。
using System;
namespace check_element_in_array {
class Program {
static void Main(string[] args) {
string[] stringArray = { "value1", "value2", "value3", "value4" };
string value = "value3";
var check = Array.Exists(stringArray, x => x == value);
if (check == true) {
Console.WriteLine("{0} found in the array", value);
} else {
Console.WriteLine("Value not found");
}
}
}
}
输出:
value3 found in the array
在上面的代码中,我们使用 C# 中的 Array.Exists()
函数检查了 stringArray
数组中是否存在值 value3
。
相关文章
在 C# 中将 List<string>转换为字符串
发布时间:2024/03/16 浏览次数:198 分类:编程语言
-
在 C# 中,有两种主要方法可用于将 List
转换为字符串变量,Linq 方法和 String.Join()函数。
在 C# 中将 List<string>转换为字符串
发布时间:2024/03/16 浏览次数:171 分类:编程语言
-
在 C# 中,有两种主要方法可用于将 List
转换为字符串变量,Linq 方法和 String.Join()函数。
在 C# 中将 List<string>转换为字符串
发布时间:2024/03/16 浏览次数:187 分类:编程语言
-
在 C# 中,有两种主要方法可用于将 List
转换为字符串变量,Linq 方法和 String.Join()函数。
在 C# 中发出 HTTP POST Web 请求
发布时间:2024/02/04 浏览次数:131 分类:编程语言
-
在 C# 中,可以使用 3 种主要方法来发出 HTTP POST Web 请求:WebClient 类,HttpWebRequest 类和 HttpClient 类。本教程将讨论在 C# 中发出 HTTP POST Web 请求的方法。使用 C# 中的 WebClient 类发出 HTTP POST Web 请求
在 C# 中运行命令提示符命令
发布时间:2024/02/04 浏览次数:130 分类:编程语言
-
Process 类可用于在 C# 中运行命令提示符命令。在 C# 中使用 Process.Start() 函数运行命令提示符命令
在 C# 中调整图像大小
发布时间:2024/02/04 浏览次数:203 分类:编程语言
-
有两种主要方法可用于在 C# 中调整图像的大小,Bitmap 类构造函数和 graphics.DrawImage()函数。在本教程中,我们将讨论在C#中调整图像大小的方法。我们将带您完成整个过程,从加载原始图像到保
在 C# 中下载图片
发布时间:2024/02/04 浏览次数:138 分类:编程语言
-
有 3 种主要方法可用于下载 C# 中的图片,WebClient.DownloadFile()函数,Bitmap 类和 Image.FromStream()函数。在 C# 中使用 WebClient 类下载图片 WebClient 类提供了用于向 C# 中的 URL 发送数据和从 URL 接收数据
在 C# 中使用秒表
发布时间:2024/02/04 浏览次数:139 分类:编程语言
-
我们可以使用 Stopwatch 类来计算 C# 中的经过时间。使用 C# 中的秒表类计算经过时间 Stopwatch 类在 C# 中准确测量经过的时间。
在 C# 中获取可执行路径
发布时间:2024/02/04 浏览次数:200 分类:编程语言
-
有 3 种主要方法可用于获取 C# 中程序的可执行路径,即 Assembly 类,AppDomain 类和 Path 类。本教程将介绍获取 C# 代码的可执行路径的方法。使用 C# 中的 Assembly 类获取可执行路径