An instance of 
TdIntervalDayToSecond is created from a day and time components specified as integers.
Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer _
)
             
        
            
            'Usage
 
Dim days As Integer
Dim hours As Integer
Dim minutes As Integer
Dim seconds As Integer
Dim microseconds As Integer
 
Dim instance As New TdIntervalDayToSecond(days, hours, minutes, seconds, microseconds)
             
        
            
            public TdIntervalDayToSecond( 
   int ,
   int ,
   int ,
   int ,
   int 
)
             
        
            
            public:
TdIntervalDayToSecond( 
   int ,
   int ,
   int ,
   int ,
   int 
)
             
        
             
        
            Parameters
- days
- Number of days.
- hours
- Number of hours.
- minutes
- Number of minutes.
- seconds
- Number of seconds.
- microseconds
- The number of fractional seconds.
 
            Exceptions
            
            
            
            
            
            
            
            
            Requirements
| Product | Versions | Platforms | 
|---|
| .NET | 6, 7 | Windows, Linux, MacOS | 
| .NET Framework | 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows | 
| .NET Standard | 2.0 | Windows, Linux, MacOS | 
 
            
            See Also