我有一個列表,在這個列表中我存儲了2個字符串(標題和消息)的多個數組。在列表/數組內搜索
我希望能夠搜索標題和如果標題存在我希望程序輸出整個數組(標題和消息)。
我該怎麼做?
正如你可以看到樓下它是區分#2,我需要幫助:)
List<string[]> loggBoken = new List<string[]>();
case 1:
string[] post = new string[2];
post[0] = Console.ReadLine();
post[1] = Console.ReadLine();
loggBoken.Add(post);
case 2:
**search title**
**go through the list**
**if title exists, write out the entire array**
「標題」是什麼意思?數組的第一個元素? –
是的,如果我不清楚@IanH,對不起。 – LePelican
你的清單是怎樣的? – 2016-12-16 21:32:19