views:

143

answers:

1

For 10 I want 10 and not 10.00 For 10.11 I want 10.11

Is this possible without code? i.e. by specifying a format string alone simlar to {0:N2}

Thanks!

+9  A: 
decimal num = 10.11;

Console.WriteLine( num.ToString( "#0.##" ) );
tvanfosson
Perfect. Thank you.
Neil