2 instantiations of SYSTEMTIME
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1305SYSTEMTIME 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)
340SYSTEMTIME systemTime = default; 358SYSTEMTIME systemTime = (SYSTEMTIME)_value; 893SYSTEMTIME systemTime = (SYSTEMTIME)value; 974SYSTEMTIME systemTime = (SYSTEMTIME)Value; 1260SYSTEMTIME systemTime = (SYSTEMTIME)_value; 1317Span<SYSTEMTIME> times = [(SYSTEMTIME)min, (SYSTEMTIME)max];
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (14)
861SYSTEMTIME systemTime = default; 1250Span<SYSTEMTIME> times = stackalloc SYSTEMTIME[2]; 1305SYSTEMTIME systemTime = new() 1364SYSTEMTIME systemTime = (SYSTEMTIME)_todaysDate; 1738Span<SYSTEMTIME> times = [(SYSTEMTIME)minDate, (SYSTEMTIME)maxDate]; 1884Span<SYSTEMTIME> times = [(SYSTEMTIME)lower, (SYSTEMTIME)upper]; 2002SYSTEMTIME 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)