0
我有一個列表字符串:搜索列表中的特定字符串文本,並返回整行
List<string> Entries = new List<string>();
Entries.Add("The quick brown fox jumps over the lazy dog");
Entries.Add("Lorem ipsum dolor sit amet");
Entires.Add("Consetetur sadipscing elitr");
我可以搜索列表中的類似"fox"
並獲得整條生產線("The quick brown fox jumps over the lazy dog"
)返回?
你可以爲每個條目做'foreach'並且做'contains''「fox」'? – KSdev