Npgsql Api Docs

NpgsqlInterval Greater Than Operator 

Compares two NpgsqlInterval instances to see if the first is greater than the second

[Visual Basic]
returnValue = NpgsqlInterval.op_GreaterThan(x, y)
[C#]
public static bool operator >(
   NpgsqlInterval x,
   NpgsqlInterval y
);

Parameters

x
The first NpgsqlInterval to compare.
y
The second NpgsqlInterval to compare.

Return Value

true if the first NpgsqlInterval is greater than second, false otherwise.

See Also

NpgsqlInterval Class | NpgsqlTypes Namespace