Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm exporting data to a csv file using Asp.net and I need to know from the System.Globalization.CultureInfo.CurrentCulture if I should use "," or ";" as a value separator. For example US needs "," and Europe needs ";". How can I find out which one to use from the CurrentCulture?

Thanks!

share|improve this question

1 Answer

up vote 3 down vote accepted
System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator

Definition from the msdn docs:

Gets or sets the string that separates items in a list.

share|improve this answer
Perfect! Thanks! – Martin Oct 22 '10 at 15:26
@Martin - No problem :) – Geoff Appleford Oct 22 '10 at 16:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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