If I have a POCO with a couple dozen properties, and I want to change the column header of only one of those, is there a way to declare CustomHeadersMap that contains only the property I wish to change, and leave the others intact? The statement below leaves with with only a single column when I serialize to CSV.
ServiceStack.Text.CsvConfig<TMExportFile>.CustomHeadersMap =
new Dictionary<string, string>
{
{"MaleFemale", "Male/Female"}
};