So I am working on a project for myself.
Now I am using string.formatter
bon = bon + String.Format("{0,-2} X {1,-10} {1,5}", hoeveelheid[i], frieten[i], hulp);
The problem lays in "hulp" this is a double
. But it is not showed in the output. instead the same output as frieten[i] is outputted.
Like so :
4 X klein klein
The output needs to be like : `
4X klein €15,00
`