コード例 #1
0
 public void AddBestandteil(Atombindung atombindung, int anzahlAtome)
 {
     for (int cnt = 0; cnt < anzahlAtome; cnt++)
     {
         Bestandteile.Add(atombindung.Bestandteile.SelectMany(x => x).ToArray());
     }
 }
コード例 #2
0
 public void AddBestandteil(Element element, int anzahlAtome)
 {
     for (int cnt = 0; cnt < anzahlAtome; cnt++)
     {
         Bestandteile.Add(new Element[] { element });
     }
 }