A variable of type double can easily be converted to float or any other similar data type, in C#:
double myDouble = 2006;
float myFloat = 0;
myFloat = (float)myDouble;
A variable of type double can easily be converted to float or any other similar data type, in C#:
double myDouble = 2006;
float myFloat = 0;
myFloat = (float)myDouble;