Is it possible to add a $ to a field using FileHelpers library? I have an object
[DelimitedRecord("|")]
public class TradesToBloombergFileHeaders
{
[FieldOrder(1)]
public Guid id;
[FieldOrder(2)]
public string name;
[FieldOrder(3)]
public double price;
[FieldOrder(4), FieldConverter(ConverterKind.Date, "yyyyMMdd")]
public DateTime date;
}
I'm generating a file and want price to be in this format $xxx.xx. Is it even possible? I searched, read documentaion and I don't see anything similar to what i need. Thanks!