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());
auto date_only = date1.date();
console::write_line(date_only.to_string("d"));
console::write_line(date_only.to_string("g"));
console::write_line(date_only.to_string("u"));
}
};
#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