Comment obtenir le jour de la semaine au format entier? Je sais que ToString ne retournera qu'une chaîne.
DateTime ClockInfoFromSystem = DateTime.Now;
int day1;
string day2;
day1= ClockInfoFromSystem.DayOfWeek.ToString(); /// it is not working
day2= ClockInfoFromSystem.DayOfWeek.ToString(); /// it gives me string
ToString()
alors pourquoi vous attendriez-vous à autre chose qu'à une chaîne?