Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Panda
- {
- public string Nombre { get; set;}
- public Panda Pareja { get;set;}
- public void Relacionarse (Panda companiero)
- {
- Pareja = companiero;
- companiero.Pareja = this;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement