Convert number to string with certain number of decimals

[double]$pi = 22/7
$pi.ToString('0.00')
Details
Convert number to string. The number of deciaml places can be controled by the value in the ToString()

Example
PS C:\> [double]$pi = 22/7
>> $pi.ToString('0.00')

3.14