Esempio n. 1
0
        public override void makeClonned(int maxKnot, string cloneValue)
        {
            string max = maxKnot.ToString();

            string[] clonnedKnots = { knots[0], knots[1], max, knots[3] };
            string[] cloneKnots   = { knots[0], knots[1], knots[2], max };
            BI       clonned      = new BI(name + clonnedSuffix, clonnedKnots, value);
            BI       clone        = new BI(name, cloneKnots, cloneValue);

            cloneElement    = clone;
            clonnedElements = new List <Element>()
            {
                clonned, clone
            };
        }
Esempio n. 2
0
 public override void makeClonned(int maxKnot, string cloneValue)
 {
     string max = maxKnot.ToString();
     string[] clonnedKnots = { knots[0], knots[1], max, knots[3] };
     string[] cloneKnots = { knots[0], knots[1], knots[2], max };
     BI clonned = new BI(name + clonnedSuffix, clonnedKnots, value);
     BI clone = new BI(name, cloneKnots, cloneValue);
     cloneElement = clone;
     clonnedElements = new List<Element>() { clonned, clone };
 }
Esempio n. 3
0
 public BI(BI element) : base(element)
 {
 }
Esempio n. 4
0
 public BI(BI element)
     : base(element)
 {
 }