4 writes to wSecond
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1313
wSecond
= mchi.st.wSecond,
System.Windows.Forms.Primitives (1)
Windows.Win32.SYSTEMTIME.g.cs (1)
99
wSecond
= (ushort)time.Second,
System.Windows.Forms.Primitives.Tests (2)
Interop\Kernel32\SYSTEMTIMETests.cs (2)
42
wSecond
= 30,
68
wSecond
= 99,
12 references to wSecond
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1313
wSecond = mchi.st.
wSecond
,
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)
28
Assert.Equal(0, st.
wSecond
);
54
Assert.Equal(st.
wSecond
, dt.Second);
System.Windows.Forms.Tests (5)
System\Windows\Forms\MonthCalendarTests.cs (5)
1038
Assert.True(range[0].
wSecond
>= 0);
1046
Assert.True(range[1].
wSecond
>= 0);
1077
Assert.Equal(0, date.
wSecond
);
1181
Assert.Equal(5, range[0].
wSecond
);
1189
Assert.Equal(6, range[1].
wSecond
);