Pregunta

I have an asp.net application in which i'd to display a double field in a crystal report.

I'd like to display ,for example, 11.22 as 11

I used the method Math.Truncate but i got this double 11,00 as result.

So how can i resolve this problem without converting it to an integer?

¿Fue útil?

Solución

Have you tried;

Math.Round(11.22)

That ought to do what you want although you need to be aware of the rounding rules.

Otros consejos

Try this expression:

Math.Floor(11.22)
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top