I trying to load worksheet names from an excel using LinqToExcel.
using the following line of code
excelQueryFactory.GetWorksheetNames();
The worksheet names are ["$2,00","$5.00"].
but load ["2,00" , "5,00"]. The $ sign is missing.
What i do wrong? . How could i load the sush as they are?
Thank you.