14.5.2.4 OracleIntervalDS(int, int, int, int, double)
This constructor creates a new instance of the OracleIntervalDS structure and sets its value using the supplied days, hours, minutes, seconds, and milliseconds. 
                  
Declaration
// C# public OracleIntervalDS (int days, int hours, int minutes, int seconds, double milliSeconds);
Parameters
- 
                        daysThe days provided. Range of day is (-999,999,999 to 999,999,999). 
- 
                        hoursThe hours provided. Range of hour is (-23 to 23). 
- 
                        minutesThe minutes provided. Range of minute is (-59 to 59). 
- 
                        secondsThe seconds provided. Range of second is (-59 to 59). 
- 
                        milliSecondsThe milliseconds provided. Range of millisecond is (- 999.999999 to 999.999999). 
Exceptions
ArgumentOutOfRangeException - The argument value for one or more of the parameters is out of the specified range.
                  
ArgumentException - The argument values of the parameters cannot be used to construct a valid OracleIntervalDS.
                  
Remarks
The sign of all the arguments must be the same.