fork download
  1. using System;
  2. using static System.Console;
  3. using System.Collections.Generic;
  4.  
  5. public class Program {
  6. public static void Main() {
  7. var list = new List<string>() { "Leão", "Guepardo", "Elefante" };
  8. var array = new string[3] { "Leão", "Guepardo", "Elefante" };
  9. WriteLine(list.IndexOf("Elefante"));
  10. WriteLine(Array.IndexOf(array, "Elefante"));
  11. }
  12. }
  13.  
  14. //https://pt.stackoverflow.com/q/321203/101
Success #stdin #stdout 0.02s 15940KB
stdin
Standard input is empty
stdout
2
2