একটি অ্যারে ঘোষণা করুন এবং আরম্ভ করুন −
string[] str = new string[] { "Cat", "Mat", "Rat" };
এখন, ue IndexOf() পদ্ধতিতে “Mat” শব্দের সূচী খুঁজে বের করুন -
Array.IndexOf(str, "Mat");
নিচের কোড −
উদাহরণ
using System; public class Demo { public static void Main() { string[] str = new string[] { "Cat", "Mat", "Rat" }; Console.WriteLine("Our Array ="); for (int i = 0; i < str.Length; i++) { string res = str[i]; Console.WriteLine(res); } int findIndex = Array.IndexOf(str, "Mat"); Console.Write("Element Mat found at the following index: "); Console.WriteLine(findIndex); } }
আউটপুট
Our Array = Cat Mat Rat Element Mat found at the following index: 1