5 instantiations of SYSTEMTIME
System.Windows.Forms (1)
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1305SYSTEMTIME systemTime = new()
System.Windows.Forms.Primitives (1)
Windows.Win32.SYSTEMTIME.g.cs (1)
91 return new SYSTEMTIME
System.Windows.Forms.Primitives.Tests (2)
Interop\Kernel32\SYSTEMTIMETests.cs (2)
35SYSTEMTIME st = new() 61SYSTEMTIME st = new()
System.Windows.Forms.UI.IntegrationTests (1)
MonthCalendarTests.cs (1)
58SYSTEMTIME date = new()
54 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; 1736Span<SYSTEMTIME> times = [(SYSTEMTIME)minDate, (SYSTEMTIME)maxDate]; 1882Span<SYSTEMTIME> times = [(SYSTEMTIME)lower, (SYSTEMTIME)upper]; 2000SYSTEMTIME systemTime = (SYSTEMTIME)_todaysDate;
System.Windows.Forms.Primitives (15)
Windows.Win32.MCGRIDINFO.g.cs (2)
69 internal winmdroot.Foundation.SYSTEMTIME stStart; 75 internal winmdroot.Foundation.SYSTEMTIME stEnd;
Windows.Win32.MCHITTESTINFO.g.cs (1)
50 internal winmdroot.Foundation.SYSTEMTIME st;
Windows.Win32.NMDATETIMECHANGE.g.cs (1)
46 internal winmdroot.Foundation.SYSTEMTIME st;
Windows.Win32.NMDAYSTATE.g.cs (1)
41 internal winmdroot.Foundation.SYSTEMTIME stStart;
Windows.Win32.NMSELCHANGE.g.cs (2)
41 internal winmdroot.Foundation.SYSTEMTIME stSelStart; 48 internal winmdroot.Foundation.SYSTEMTIME stSelEnd;
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)
System.Windows.Forms.Primitives.Tests (6)
Interop\Kernel32\SYSTEMTIMETests.cs (6)
13Assert.Equal(16, Marshal.SizeOf<SYSTEMTIME>()); 14Assert.Equal(16, sizeof(SYSTEMTIME)); 20SYSTEMTIME st = default; 35SYSTEMTIME st = new() 61SYSTEMTIME st = new() 79SYSTEMTIME st = default;
System.Windows.Forms.Tests (6)
System\Windows\Forms\DateTimePickerTests.cs (1)
908SYSTEMTIME systemTime = default;
System\Windows\Forms\MonthCalendarTests.cs (5)
1030Span<SYSTEMTIME> range = stackalloc SYSTEMTIME[2]; 1069SYSTEMTIME date = default; 1173Span<SYSTEMTIME> range = stackalloc SYSTEMTIME[2];
System.Windows.Forms.UI.IntegrationTests (1)
MonthCalendarTests.cs (1)
58SYSTEMTIME date = new()