示例#1
0
 public void FillList(List <T> l)
 {
     l.Add(Value);
     if (After is null)
     {
         return;
     }
     After.FillList(l);
 }