When I check the value of "float.MaxValue" I'm getting:
3.402823E+38
which is:
340,282,300,000,000,000,000,000,000,000,000,000,000
Then why when I'm trying to set a much smaller value into a float variable:
float myValue = 1234567890123456789024;
then I get an error message:
Integral constant is too large
This value is MUCH smaller then "3.402823E+38", so why am I getting an error for it?