I am making an application in which user have to select weekend days and save it in the database. I want to save it in database in en-US but show it to user in his own culture:
1- I am retrieving all day names from:
CultureInfo.CurrentCulture.DateTimeFormat.DayNames
How to convert day names selected by user to en-US day names?
How to convert en-US day names retrieved from database to user current culture day names?
Thank You,