TIME_ZONE_INFORMATION (Structures)
Last changed: patrick@mvps.org-69.244.147.9

.
Summary
TODO - a short description

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;

}

VB Definition:

Structure TIME_ZONE_INFORMATION
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation