up vote 5 down vote favorite
4
share [g+] share [fb]

In languages where the decimal separator is a ,(comma) the CSV (comma separated values file format) separator is a ; (semicolon). I know where to find this configuration in the Windows Control Panel, but I don't know how to find it progamatically in a .NET application.

I guess that Thread.CurrentThread.CurrentCulture has that information, but I couldn't find inside it.

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator

Is the only way I know how.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.