12.34f vs (float) 12.34

  • Thread starter Thread starter Jon Shemitz
  • Start date Start date
The C# compiler will act the same way on ALL platforms.
The JIT will not.
The MSIL should be all the same regardless of the CPU or the OS you're
compiling under.

About the conversion - you can check out what does the C# compiler spits out
with the ILDASM utility.
Located in the .NET Framework SDK folder.

Cheers,
Branimir
 
Back
Top