Shown decimal places

my current code:

private GUILabel windSpeedText;
private float windSpeed = 5;
windSpeedText.text = "" + Mathf.Round(windSpeed * 100.0f) / 100.0f;

current Output: 5
Wanted Output: 5.00

I would always like to always have 2 decimal places following the number.

Check this: String.Format Method (System) | Microsoft Learn and this: http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx

nvm, found it

windSpeedText.text = string.Format(“{0:0.00}”, Mathf.Round(windSpeed * 100.0f) / 100.0f);