How to convert form the following format 12,5242.25 to decimal 125242.25 reading a set of data from an excel workseet and am using some internally developed library to which i don't have access to, in order to map the worksheet to a POCO.
[ExcelObject("NameFromExcelOfDataCollection")
public class @MyClass
{
....
[ExcelColumn(Name = "excel_column_name", format: "????")]
public decimal MyNumber { get; set; }
....
}
I found this .NET String.Format() to add commas in thousands place for a number which shows how to do it the other way arround.