Difference between decimal, float and double in .NET?

float and double are floating binary point types. In other words, they represent a number like this: 10001.10010110011 The binary number and the location of the binary point are both encoded within the value. decimal is a floating decimal point type. In other words, they represent a number like this: 12345.65789 Again, the number and … Read more

tech