I just noticed through debugging my code that the two following lines produce different results:

Code:
String.Format("{0:F4}", 5)
Returns "5.0000"

Code:
Format("{0:F4}", 5)
Returns "5"

Can anyone shed some light on this?

Thanks!