Esempio n. 1
0
 public IActionResult Index()
 {
     ViewBag.allPokemon = pokemonFactory.GetAllPokemon();
     // System.Console.WriteLine("****" + allPokemon);
     foreach (var entry in ViewBag.allPokemon)
     {
         System.Console.WriteLine("Name: " + entry["name"]);
         System.Console.WriteLine("Type: " + entry["type"]);
     }
     return(View("Test"));
 }