5 writes to wMonth
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1308wMonth = mchi.st.wMonth,
System.Windows.Forms.Primitives (1)
Windows.Win32.SYSTEMTIME.g.cs (1)
94 wMonth = (ushort)time.Month,
System.Windows.Forms.Primitives.Tests (2)
Interop\Kernel32\SYSTEMTIMETests.cs (2)
38wMonth = 5, 64wMonth = 99,
System.Windows.Forms.UI.IntegrationTests (1)
MonthCalendarTests.cs (1)
61wMonth = (ushort)selectedDate.Month,
12 references to wMonth
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1308wMonth = mchi.st.wMonth,
System.Windows.Forms.Primitives (4)
Windows.Win32.SYSTEMTIME.g.cs (4)
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(); 75 return new global::System.DateTime(sysTime.wYear, sysTime.wMonth, sysTime.wDay, sysTime.wHour, sysTime.wMinute, sysTime.wSecond, sysTime.wMilliseconds);
System.Windows.Forms.Primitives.Tests (2)
Interop\Kernel32\SYSTEMTIMETests.cs (2)
23Assert.Equal(0, st.wMonth); 49Assert.Equal(st.wMonth, dt.Month);
System.Windows.Forms.Tests (5)
System\Windows\Forms\MonthCalendarTests.cs (5)
1033Assert.Equal(1, range[0].wMonth); 1041Assert.Equal(2, range[1].wMonth); 1072Assert.Equal(1, date.wMonth); 1176Assert.Equal(1, range[0].wMonth); 1184Assert.Equal(2, range[1].wMonth);