SameTime

Adam Boduch
SameTime
Moduł: DateUtils
```delphi function SameTime(const A, B: TDateTime): Boolean; ``` [[Delphi/Funkcje|Funkcja]] porównuje dwie wartości czasu przekazane w parametrach A oraz B. Zwraca wartość [[Delphi/True]] jeżeli są one równe ([[Delphi/False]] w przeciwnym wypadku).
program FooApp;

{$APPTYPE CONSOLE}

uses
  SysUtils, DateUtils;

var
  A, B : TDateTime;
  Result : Boolean;
begin
  A := Now;
  B := A;

  Result := SameTime(A, B);

  if Result then
    Writeln('Tak, wartości TDateTime są równe')
  else Writeln('Niestety, wartości TDateTime są różne');

  Readln;
end.

Zobacz też:

0 komentarzy