Just wandering how can I find value from List if array value contains string in c# .net?
Example: I have the following code to stored the value into the List
var tempTraker = new List<string>();
tempTraker.Add("2|a");
tempTraker.Add("1|e");
tempTraker.Add("4|r");
tempTraker.Add("3|h");
How can I check tempTraker array value contains "1|" and return the full value "1|e" ? Will it be possible?