When writing the integer value 1000 to a file the value is inserted as "1,000". How can I prevent this. I want to the value to appear as 1000 not "1,000"
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When writing the integer value 1000 to a file the value is inserted as "1,000". How can I prevent this. I want to the value to appear as 1000 not "1,000"
Thanks
My bad. I guess I should provide an option to format the output of numbers. I'll add the interface in 1.4.1 release.
In the mean time you can achieve what you are trying to do by converting the interger into a string before adding it to the DataRow instance.