1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace Pcb.Common.Extension
| {
| public static class DayOfWeekExtension
| {
| public static string ToChinese(this DayOfWeek dayOfWeek)
| {
| switch (dayOfWeek)
| {
| case DayOfWeek.Monday:
| return "周一";
| case DayOfWeek.Tuesday:
| return "周二";
| case DayOfWeek.Wednesday:
| return "周三";
| case DayOfWeek.Thursday:
| return "周四";
| case DayOfWeek.Friday:
| return "周五";
| case DayOfWeek.Saturday:
| return "周六";
| case DayOfWeek.Sunday:
| return "周日";
| default:
| return string.Empty;
| }
| }
| }
| }
|
|