Won't Fix
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Telerik Admin
Created on: 12 Mar 2012 12:01
Category: NumericUpDown
Type: Bug Report
3
Not working correctly when working with huge numbers

		
1 comment
ADMIN
Kalin
Posted on: 14 Oct 2015 12:55
Hi,

This is expected behavior - the issue is related with the precision of the double object in the .Net framework. Such really big numbers are loosing the precision and are being rounded.. 

Can be observed in the following snippet:
var a = double.MaxValue;
var b = a - 100;
var areEqual = a == b;

Regards,
Kalin