Initializes a new instance of the class with all given parameters.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As Short, _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim offset As Short
Dim daylightSavingInOffset As Boolean
 
Dim instance As New UATimeZoneData(offset, daylightSavingInOffset)
             
        
            
            public UATimeZoneData( 
   short ,
   bool 
)
             
        
            
            public:
UATimeZoneData( 
   short ,
   bool 
)
             
        
             
        
            Parameters
- offset
- The offset in minutes from UtcTime.
- daylightSavingInOffset
- If TRUE, then daylight saving time (DST) is in effect and offset includes the DST correction. If FALSE then the offset does not include the DST correction and DST may or may not have been in effect.
 
            
            
            
            
            
            
            
            
            
            Requirements
 
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also