У меня есть .txt
файл с массивами, который выглядит следующим образом:
После того, как у меня есть поиск совпадений в массиве, я хочу Console.WriteLine
каждый индекс этого массива.
// Finder bestemt brugere
else if (brugervalg == "f")
{
Console.Write("Hvad vil du søge efter?: ");
string søgestreng = Console.ReadLine();
string[] lines = System.IO.File.ReadAllLines(filePath);
// System.Console.WriteLine("Contents of WriteLines2.txt = ",lines);
foreach (string line in lines)
{
if (line.Contains(søgestreng))
{
Console.WriteLine(); //want to list first index of array here
Console.WriteLine(); //List next index here
Console.WriteLine(); //So on
}
}
Console.ReadKey();
}