Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
TIME_ZONE_INFORMATION (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
public struct TIME_ZONE_INFORMATION
{
[MarshalAs(UnmanagedType.I4)]
public Int32 Bias;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=32)]
public string StandardName;
public SYSTEMTIME StandardDate;
[MarshalAs(UnmanagedType.I4)]
public Int32 StandardBias;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=32)]
public string DaylightName;
public SYSTEMTIME DaylightDate;
[MarshalAs(UnmanagedType.I4)]
public Int32 DaylightBias;
}
[StructLayoutAttribute(LayoutKind.Sequential)]
public struct SYSTEMTIME
{
public short wYear;
public short wMonth;
public short wDayOfWeek;
public short wDay;
public short wHour;
public short wMiniute;
public short wSecond;
public short wMilliseonds;
}
<MarshalAs(UnmanagedType.I4)> _
Public Bias As Integer
<MarshalAs(UnmanagedType.I4)> _
Public DaylightBias As Integer
End Structure
User-Defined Field Types:
None.
Notes:
None.
The GetTimeZoneInformation API
3/16/2007 7:55:51 AM - -139.142.123.225
The SetTimeZoneInformation function sets the current time-zone parameters. These parameters control translations from Coordinated Universal Time (UTC) to local time.
3/13/2017 6:01:52 AM - -79.176.199.219
Represents a date and time using individual members for the month, day, year, weekday, hour, minute, second, and millisecond.
9/30/2021 1:01:31 PM - -45.137.113.229
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.