Example #1
0
        public testUnit(testUnit unit, string NewSymbol = "Empty", decimal correction = 1)
        {
            Name = "test";
            Unit = unit.Unit.Copy();

            SetCombined(correction);
            SetNewSymbol(NewSymbol);
        }
Example #2
0
        public testUnit(PreFix SI, testUnit unit)
        {
            Name = "test";
            Unit = unit.Unit.Copy();

            SetCombined(SI);
            SetNewSymbol(SI);
        }