I need thousand and decimal separator as per current culture. If we are using US culture then for decimal it should '.' and for thousand it should ','. But for German culture default decimal separator is ',' and thousand separator is '.'. for getting date time separator I am using following code
CultureInfo us = new CultureInfo("en-US");
string shortUsDateFormatString = us.DateTimeFormat.ShortDatePattern;
string dateseparator= us.DateTimeFormat.DateSeparator;
string timeseparator= us.DateTimeFormat.TimeSeparator;
Is there any way something same like date / time ?