+ 11
Float in C# means?
2 Answers
+ 3
A float is short for a floating-point number. This type of number does not have a limit for the number of digits before and after a decimal point, which means the decimal point can 'float' anywhere within that number. In programming, this data type is used for handling decimals that have very high precision.
0
thank you for explaining!