2 instantiations of SYSTEMTIME
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1305
SYSTEMTIME systemTime =
new
()
System.Windows.Forms.Primitives (1)
_generated\471\Windows.Win32.SYSTEMTIME.g.cs (1)
91
return new
SYSTEMTIME
41 references to SYSTEMTIME
System.Windows.Forms (26)
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (12)
340
SYSTEMTIME
systemTime = default;
358
SYSTEMTIME
systemTime = (
SYSTEMTIME
)_value;
893
SYSTEMTIME
systemTime = (
SYSTEMTIME
)value;
974
SYSTEMTIME
systemTime = (
SYSTEMTIME
)Value;
1260
SYSTEMTIME
systemTime = (
SYSTEMTIME
)_value;
1317
Span<
SYSTEMTIME
> times = [(
SYSTEMTIME
)min, (
SYSTEMTIME
)max];
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (14)
861
SYSTEMTIME
systemTime = default;
1250
Span<
SYSTEMTIME
> times = stackalloc
SYSTEMTIME
[2];
1305
SYSTEMTIME
systemTime = new()
1364
SYSTEMTIME
systemTime = (
SYSTEMTIME
)_todaysDate;
1738
Span<
SYSTEMTIME
> times = [(
SYSTEMTIME
)minDate, (
SYSTEMTIME
)maxDate];
1884
Span<
SYSTEMTIME
> times = [(
SYSTEMTIME
)lower, (
SYSTEMTIME
)upper];
2002
SYSTEMTIME
systemTime = (
SYSTEMTIME
)_todaysDate;
System.Windows.Forms.Primitives (15)
_generated\318\Windows.Win32.MCGRIDINFO.g.cs (2)
69
internal winmdroot.Foundation.
SYSTEMTIME
stStart;
75
internal winmdroot.Foundation.
SYSTEMTIME
stEnd;
_generated\321\Windows.Win32.MCHITTESTINFO.g.cs (1)
50
internal winmdroot.Foundation.
SYSTEMTIME
st;
_generated\346\Windows.Win32.NMDATETIMECHANGE.g.cs (1)
46
internal winmdroot.Foundation.
SYSTEMTIME
st;
_generated\348\Windows.Win32.NMDAYSTATE.g.cs (1)
41
internal winmdroot.Foundation.
SYSTEMTIME
stStart;
_generated\362\Windows.Win32.NMSELCHANGE.g.cs (2)
41
internal winmdroot.Foundation.
SYSTEMTIME
stSelStart;
48
internal winmdroot.Foundation.
SYSTEMTIME
stSelEnd;
_generated\471\Windows.Win32.SYSTEMTIME.g.cs (8)
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;
57
public override bool Equals(object obj) => obj is
SYSTEMTIME
other && this.Equals(other);
61
public static bool operator ==(
SYSTEMTIME
d1,
SYSTEMTIME
d2) => d1.Equals(d2);
63
public static bool operator !=(
SYSTEMTIME
d1,
SYSTEMTIME
d2) => !(d1 == d2);
66
public static explicit operator global::System.DateTime(
SYSTEMTIME
sysTime)
79
public static explicit operator
SYSTEMTIME
(global::System.DateTime time)