Wie erhalte ich den Wochentag im Ganzzahlformat? Ich weiß, dass ToString nur eine Zeichenfolge zurückgibt.
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()
, warum sollten Sie also etwas anderes als eine Zeichenfolge erwarten?