DateTime.Equals Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Equals(DateTime, DateTime) |
Restituisce un valore che indica se due istanze di DateTime presentano lo stesso valore di data e ora. |
Equals(DateTime) |
Restituisce un valore che indica se il valore di questa istanza è uguale al valore dell'istanza di DateTime specificata. |
Equals(Object) |
Restituisce un valore che indica se questa istanza è uguale a un oggetto specificato. |
Equals(DateTime, DateTime)
Restituisce un valore che indica se due istanze di DateTime presentano lo stesso valore di data e ora.
public:
static bool Equals(DateTime t1, DateTime t2);
public static bool Equals (DateTime t1, DateTime t2);
static member Equals : DateTime * DateTime -> bool
Public Shared Function Equals (t1 As DateTime, t2 As DateTime) As Boolean
Parametri
- t1
- DateTime
Primo oggetto da confrontare.
- t2
- DateTime
Secondo oggetto da confrontare.
Restituisce
true
se i due valori sono uguali; in caso contrario, false
.
Esempio
Nell'esempio seguente viene illustrato il Equals metodo.
System::DateTime today1 = System::DateTime(
System::DateTime::Today.Ticks );
System::DateTime today2 = System::DateTime(
System::DateTime::Today.Ticks );
System::DateTime tomorrow = System::DateTime(
System::DateTime::Today.AddDays( 1 ).Ticks );
// todayEqualsToday gets true.
bool todayEqualsToday = System::DateTime::Equals( today1, today2 );
// todayEqualsTomorrow gets false.
bool todayEqualsTomorrow = System::DateTime::Equals( today1, tomorrow );
System.DateTime today1 =
new System.DateTime(System.DateTime.Today.Ticks);
System.DateTime today2 =
new System.DateTime(System.DateTime.Today.Ticks);
System.DateTime tomorrow =
new System.DateTime(
System.DateTime.Today.AddDays(1).Ticks);
// todayEqualsToday gets true.
bool todayEqualsToday = System.DateTime.Equals(today1, today2);
// todayEqualsTomorrow gets false.
bool todayEqualsTomorrow = System.DateTime.Equals(today1, tomorrow);
Dim today1 As New System.DateTime(System.DateTime.Today.Ticks)
Dim today2 As New System.DateTime(System.DateTime.Today.Ticks)
Dim tomorrow As New System.DateTime( _
System.DateTime.Today.AddDays(1).Ticks)
' todayEqualsToday gets true.
Dim todayEqualsToday As Boolean = System.DateTime.Equals(today1, today2)
' todayEqualsTomorrow gets false.
Dim todayEqualsTomorrow As Boolean = System.DateTime.Equals(today1, tomorrow)
Commenti
t1
e t2
sono uguali se i relativi valori delle proprietà sono Ticks uguali. I Kind relativi valori di proprietà non vengono considerati nel test per l'uguaglianza.
Vedi anche
Si applica a
Equals(DateTime)
Restituisce un valore che indica se il valore di questa istanza è uguale al valore dell'istanza di DateTime specificata.
public:
virtual bool Equals(DateTime value);
public bool Equals (DateTime value);
override this.Equals : DateTime -> bool
Public Function Equals (value As DateTime) As Boolean
Parametri
- value
- DateTime
Oggetto da confrontare con questa istanza.
Restituisce
true
se il parametro value
è uguale al valore di questa istanza; in caso contrario, false
.
Implementazioni
Esempio
Nell'esempio seguente viene illustrato il Equals metodo.
using System;
public class Application
{
public static void Main()
{
// Create some DateTime objects.
DateTime one = DateTime.UtcNow;
DateTime two = DateTime.Now;
DateTime three = one;
// Compare the DateTime objects and display the results.
bool result = one.Equals(two);
Console.WriteLine("The result of comparing DateTime object one and two is: {0}.", result);
result = one.Equals(three);
Console.WriteLine("The result of comparing DateTime object one and three is: {0}.", result);
}
}
// This code example displays the following:
//
// The result of comparing DateTime object one and two is: False.
// The result of comparing DateTime object one and three is: True.
Module Application
Sub Main()
' Create some DateTime objects.
Dim one As DateTime = DateTime.UtcNow
Dim two As DateTime = DateTime.Now
Dim three As DateTime = one
' Compare the DateTime objects and display the results.
Dim result As Boolean = one.Equals(two)
Console.WriteLine("The result of comparing DateTime object one and two is: {0}.", result)
result = one.Equals(three)
Console.WriteLine("The result of comparing DateTime object one and three is: {0}.", result)
End Sub
End Module
' This code example displays the following:
'
' The result of comparing DateTime object one and two is: False.
' The result of comparing DateTime object one and three is: True.
Commenti
L'istanza corrente e value
sono uguali se i relativi valori della proprietà sono Ticks uguali. I Kind relativi valori di proprietà non vengono considerati nel test per l'uguaglianza.
Questo metodo implementa l'interfaccia e offre prestazioni leggermente migliori rispetto al metodo , perché il parametro non System.IEquatable<T> deve essere convertito in un oggetto Equals value
.
Vedi anche
Si applica a
Equals(Object)
Restituisce un valore che indica se questa istanza è uguale a un oggetto specificato.
public:
override bool Equals(System::Object ^ value);
public override bool Equals (object value);
public override bool Equals (object? value);
override this.Equals : obj -> bool
Public Overrides Function Equals (value As Object) As Boolean
Parametri
- value
- Object
Oggetto da confrontare con questa istanza.
Restituisce
true
se value
è un'istanza di DateTime ed è uguale al valore dell'istanza; in caso contrario, false
.
Esempio
Nell'esempio seguente viene illustrato il Equals metodo.
using System;
public class Application
{
public static void Main()
{
// Create some DateTime objects.
DateTime one = DateTime.UtcNow;
DateTime two = DateTime.Now;
DateTime three = one;
// Compare the DateTime objects and display the results.
bool result = one.Equals(two);
Console.WriteLine("The result of comparing DateTime object one and two is: {0}.", result);
result = one.Equals(three);
Console.WriteLine("The result of comparing DateTime object one and three is: {0}.", result);
}
}
// This code example displays the following:
//
// The result of comparing DateTime object one and two is: False.
// The result of comparing DateTime object one and three is: True.
Module Application
Sub Main()
' Create some DateTime objects.
Dim one As DateTime = DateTime.UtcNow
Dim two As DateTime = DateTime.Now
Dim three As DateTime = one
' Compare the DateTime objects and display the results.
Dim result As Boolean = one.Equals(two)
Console.WriteLine("The result of comparing DateTime object one and two is: {0}.", result)
result = one.Equals(three)
Console.WriteLine("The result of comparing DateTime object one and three is: {0}.", result)
End Sub
End Module
' This code example displays the following:
'
' The result of comparing DateTime object one and two is: False.
' The result of comparing DateTime object one and three is: True.
Commenti
L'istanza corrente e value
sono uguali se i relativi valori della proprietà sono Ticks uguali. I Kind relativi valori di proprietà non vengono considerati nel test per l'uguaglianza.