fork(3) download
  1. using System;
  2.  
  3. public class Panda
  4. {
  5. public string Nombre { get; set;}
  6. public Panda Pareja { get;set;}
  7.  
  8. public void Relacionarse (Panda companiero)
  9. {
  10. Pareja = companiero;
  11. companiero.Pareja = this;
  12. }
  13. }
  14.  
  15. public class PruebaPanda
  16. {
  17. public static void Main(string[] args)
  18. {
  19. Panda p1 = new Panda { Nombre = "Pandi" };
  20. Panda p2 = new Panda { Nombre = "Lamy" };
  21.  
  22. p1.Relacionarse(p2);
  23.  
  24. Console.WriteLine (p1.Nombre);
  25. Console.WriteLine (p1.Pareja.Nombre);
  26. }
  27. }
Success #stdin #stdout 0.02s 34768KB
stdin
Standard input is empty
stdout
Pandi
Lamy