Exemple #1
0
 public List <T> Concat(List <T> o)
 {
     return(IsNil ? o : new List <T>(Value, Next.Concat(o)));
 }