Hi, I am trying to output a value with correct rounding rules. I would like to use the static member function Round(double value, int digits) of class System.Math.
The current expression in the template file would be e.g.:
<<[ds[0].Nums[3]]:"##,#0.00">>
My try with
<<[System.Math.Round(ds[0].Nums[3],1)]:"##,#0.00">>
resulted in a InvalidOperationException stating “Can not get the value of member ‘System’ on type ‘System.Collections.Generic.List’”
So, how can I do this?
Thanks for any infos on this in advance!
Regards
Christof