Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class PruebaPanda
- {
- public static void Main(string[] args)
- {
- Panda p1 = new Panda { Nombre = "Pandi" };
- Panda p2 = new Panda { Nombre = "Lamy" };
- p1.Relacionarse(p2);
- Console.WriteLine (p1.Nombre);
- Console.WriteLine (p1.Pareja.Nombre);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement