Domanda

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?

È stato utile?

Soluzione

Have you tried;

Math.Round(11.22)

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

Altri suggerimenti

Try this expression:

Math.Floor(11.22)
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top