예제 #1
0
        public int ConstructWithDoubleAndPrecision(double value, int precision)
        {
            var p = new Progress(value, precision);

            return p.ToInt();
        }
예제 #2
0
        public int ConstructWithInt(int value)
        {
            var p = new Progress(value);

            return p.ToInt();
        }
예제 #3
0
        public int ConstructWithDouble(double value)
        {
            var p = new Progress(value);

            return p.ToInt();
        }