xtd 0.2.0
Loading...
Searching...
No Matches
date_time_date.cpp

Shows how to use xtd::date_time::date property.

#include <xtd/xtd>
class program {
public:
static auto main() {
auto date1 = date_time {2008, 6, 1, 7, 47, 0};
console::write_line(date1.to_string());
// Get date-only portion of date, without its time.
auto date_only = date1.date();
// Display date using short date string.
console::write_line(date_only.to_string("d"));
// Display date using 24-hour clock.
console::write_line(date_only.to_string("g"));
console::write_line(date_only.to_string("u"));
}
};
startup_(program::main);
// This code produces the following output :
// 008-06-01 07:47:00
// 06/01/2008
// Sun Jun 1 00:00:00 2008
// 2008-06-01 00:00:00
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.hpp:168