fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. public class PruebaDistinct
  6. {
  7. public static void Main()
  8. {
  9. List<int> edades = new List<int> { 21, 46, 46, 55, 17, 21, 55, 55};
  10.  
  11. IEnumerable<int> edadesDistintas = edades.Distinct();
  12.  
  13. Console.WriteLine("\nEdades diferentes:");
  14. foreach (int edad in edadesDistintas)
  15. {
  16. Console.WriteLine("\t{0}", edad.ToString());
  17. }
  18. }
  19. }
Success #stdin #stdout 0.05s 34104KB
stdin
Standard input is empty
stdout
Edades diferentes:
	21
	46
	55
	17