Пример #1
0
 public void copy(AppStockList other)
 {
     if (other != null)
     {
         copy(other.stocks);
     }
 }
Пример #2
0
 public void append(AppStockList other)
 {
     if (other != null)
     {
         append(other.stocks);
     }
 }