2 writes to wDayOfWeek
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1309
wDayOfWeek
= mchi.st.wDayOfWeek,
System.Windows.Forms.Primitives (1)
Windows.Win32.SYSTEMTIME.g.cs (1)
95
wDayOfWeek
= (ushort)time.DayOfWeek,
10 references to wDayOfWeek
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1309
wDayOfWeek = mchi.st.
wDayOfWeek
,
System.Windows.Forms.Primitives (3)
Windows.Win32.SYSTEMTIME.g.cs (3)
55
public bool Equals(SYSTEMTIME other) => this.wYear == other.wYear && this.wMonth == other.wMonth && this.
wDayOfWeek
== other.
wDayOfWeek
&& this.wDay == other.wDay && this.wHour == other.wHour && this.wMinute == other.wMinute && this.wSecond == other.wSecond && this.wMilliseconds == other.wMilliseconds;
59
public override int GetHashCode() => (this.wYear, this.wMonth, this.
wDayOfWeek
, this.wDay, this.wHour, this.wMinute, this.wSecond, this.wMilliseconds).GetHashCode();
System.Windows.Forms.Primitives.Tests (1)
Interop\Kernel32\SYSTEMTIMETests.cs (1)
24
Assert.Equal(0, st.
wDayOfWeek
);
System.Windows.Forms.Tests (5)
System\Windows\Forms\MonthCalendarTests.cs (5)
1035
Assert.Equal(3, range[0].
wDayOfWeek
);
1043
Assert.Equal(0, range[1].
wDayOfWeek
);
1074
Assert.Equal(3, date.
wDayOfWeek
);
1178
Assert.Equal(3, range[0].
wDayOfWeek
);
1186
Assert.Equal(1, range[1].
wDayOfWeek
);