Shows how to use xtd::date_time::now property.
#include <xtd/xtd>
using namespace globalization;
class program {
public:
static auto main() {
auto local_date = date_time::now();
auto culture_names = array {"en-US", "en-GB", "fr-FR", "de-DE", "ru-RU"};
for (auto culture_name : culture_names) {
auto culture = culture_info {culture_name};
console::write_line("{}: {}", culture_name, local_date.to_string(culture));
}
}
};
#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