1
I’m looking for a matrix index for a value:
List<string> list = new List<string>() { "Leão", "Guepardo", "Elefante" };
String[] array = new String[3] { "Leão", "Guepardo", "Elefante" };
For example, I want to search the value index "Elephant", how can I do that? Do you have any method? , the linq
is able to do this search and return me an index?