Este método se usa para comparar dos valores de TimeSpan y devuelve un valor entero que indica si el primer valor es más corto, igual o más largo que el segundo valor.
Sintaxis: public static int Compare (TimeSpan t1, TimeSpan t2);
Parámetros:
t1 : Especifica el primer intervalo de tiempo que se comparará.
t2 : especifica el segundo intervalo de tiempo que se comparará.
Valor devuelto:
-1 : si t1 es más corto que t2.
0 : Si t1 es igual a t2.
1 : Si t1 es más largo que t2.
Los siguientes programas ilustran el uso del método TimeSpan.Compare(TimeSpan, TimeSpan) :
Ejemplo 1:
csharp
// C# program to demonstrate the // TimeSpan.Compare(TimeSpan, // TimeSpan) Method using System; class GFG { // Main Method public static void Main() { // creating the TimeSpans TimeSpan t1 = new TimeSpan(3, 22, 35, 33); TimeSpan t2 = new TimeSpan(1, 11, 15, 16); if (TimeSpan.Compare(t1, t2) == 1) Console.Write("t1 is greater than t2"); else if (TimeSpan.Compare(t1, t2) == 0) Console.Write("t1 is equal to t2"); else Console.Write("t2 is greater than t1"); } }
t1 is greater than t2
Ejemplo 2:
csharp
// C# program to demonstrate the // TimeSpan.Compare(TimeSpan, // TimeSpan) Method using System; class GFG { // Main Method public static void Main() { // creating the TimeSpans TimeSpan t1 = new TimeSpan(3, 22, 35, 33); TimeSpan t2 = new TimeSpan(4, 31, 15, 10); if (TimeSpan.Compare(t1, t2) == 1) Console.Write("t1 is greater than t2"); else if (TimeSpan.Compare(t1, t2) == 0) Console.Write("t1 is equal to t2"); else Console.Write("t2 is greater than t1"); } }
t2 is greater than t1
Ejemplo 3:
csharp
// C# program to demonstrate the // TimeSpan.Compare(TimeSpan, // TimeSpan) Method using System; class GFG { // Main Method public static void Main() { // creating the TimeSpans TimeSpan t1 = new TimeSpan(3, 22, 35, 33); TimeSpan t2 = new TimeSpan(3, 22, 35, 33); if (TimeSpan.Compare(t1, t2) == 1) Console.Write("t1 is greater than t2"); else if (TimeSpan.Compare(t1, t2) == 0) Console.Write("t1 is equal to t2"); else Console.Write("t2 is greater than t1"); } }
t1 is equal to t2
Referencia:
Publicación traducida automáticamente
Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA