↧
Answer by Dave the Troll for How do I convert Int/Decimal to float in C#?
You don't even need to cast, it is implicit.int i = 3;float f = i;A full list/table of implicit numeric conversions can be seen herehttp://msdn.microsoft.com/en-us/library/y5b434w4.aspx
View ArticleAnswer by Chris Pietschmann for How do I convert Int/Decimal to float in C#?
The same as an int:float f = 6;Also here's how to programmatically convert from an int to a float, and a single in C# is the same as a float:int i = 8;float f = Convert.ToSingle(i);Or you can just cast...
View ArticleAnswer by nedlud for How do I convert Int/Decimal to float in C#?
It is just:float f = (float)6;
View ArticleAnswer by heavyd for How do I convert Int/Decimal to float in C#?
You can just do a castint val1 = 1;float val2 = (float)val1;ordecimal val3 = 3;float val4 = (float)val3;
View ArticleHow do I convert Int/Decimal to float in C#?
How does one convert from an int or a decimal to a float in C#?I need to use a float for a third-party control, but I don't use them in my code, and I'm not sure how to end up with a float.
View Article