Send feedback on this topic.
Teradata.Client.Provider
Zero Field (TdIntervalDayToSecond)
Example 



Teradata.Client.Provider Namespace > TdIntervalDayToSecond Structure : Zero Field
Gets an TdIntervalDayToSecond instance that contains all zero elements for each interval field.
Syntax
'Declaration
 
Public Shared ReadOnly Zero As TdIntervalDayToSecond
'Usage
 
Dim value As TdIntervalDayToSecond
 
value = TdIntervalDayToSecond.Zero
public static readonly TdIntervalDayToSecond Zero
public:
static readonly TdIntervalDayToSecond Zero
Example
This example shows how to determine if an interval is negative.
TdIntervalDayTo Second dtsInterval = new TdIntervalDayToSecond(0, 0, 0, 0, -100000);
if (dtsInterval < TdIntervalDayToSecond.Zero)
{
   Console.WriteLine("The Interval is negative");
}
// The output of the console is "The interval is negative"
Remarks
A Zero TdIntervalDayToSecond may be used to determine whether other instances of intervals represent postive, negative or non-zero intervals.
Requirements

Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Server 2012 R2

See Also

Reference

TdIntervalDayToSecond Structure
TdIntervalDayToSecond Members