Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace cap07.usoienumerator
- {
- public class App
- {
- public static void Main()
- {
- Persona[] personas = new Persona[3]
- {
- new Persona("Fyodor", "Dostoevsky"),
- new Persona("Honoré", "Balzac"),
- new Persona("Charles", "Dickens")
- };
- Gente gente = new Gente(personas);
- foreach(Persona p in gente)
- {
- Console.WriteLine(p.Nombre + " " + p.Apellido);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement