Yes, it gives always the same value to convert (the same) floating point number from single precision to double precision. This is true for every language (managed or unmanaged, in any environment).
But floating point numbers hide some problem if you write your example:
float x = (double)0.123456789;
Compiler (I'm sure about some gcc versions) do not convert the number from double to float in the right way. Remember this when you write literals, example:
float x = 0.000000000; // You have to _find_ the right number!
float y = 0.000000000f;
bool areSame = x == y; // **NOT** true
Moreover you can specify (I didn't check your example) a number that can't be represented without errors using a float. So following code may not evaluate to true):
float x = (double)0.123456789;
double y = 0.123456789;
bool areSame = x == y;
With this in mind you can be sure that the same rounding error will be applied everytime you convert that number. But different numbers can lead to different rounding errors! Do not forget floating points are represented with a finite precision because they use a finite number of bits.
Last question is to convert from float to double and back. Yes, number won't change because double has exactly a double precision of a single.
dis for double.Mis for decimal (and it's short for "money"). msdn.microsoft.com/en-us/library/bfft1t3c.aspx – Mr Lister Mar 16 '12 at 19:10