Beispiel #1
0
 public Serie(string name, Element[] elements)
 {
         this.Name = name;
         this.Elements = elements;
         System.Random r = new System.Random();
         this.Color = System.Drawing.Color.FromArgb(r.Next(0, 255), r.Next(0, 255), r.Next(0, 255));
 }
Beispiel #2
0
 public Serie(string name, Element[] elements, System.Drawing.Color color)
 {
         this.Name = name;
         this.Elements = elements;
         this.Color = color;
 }