When I am generating data for a table (TABLE=) the names of the Anonymous type members become the Column Headers in the resulting displayed table. Capital letters represent new words and are prepended with a space in the table.
How do I encode my data such that the resulting Column heading in the Table reads “DD as %” ??
This code:
TABLE = new[] {
new {
name = "row 1",
DdAsPcnt = 0,
},
};
produces “Dd As Pcnt” for example as a column heading, is there any way to get “DD as %” ??