#include <xtd/xtd>
class program {
public:
static auto main() {
auto culture_names =
array {
"en-US",
"en-GB",
"fr-FR",
"de-DE",
"ru-RU"};
for (auto culture_name : culture_names) {
console::write_line(
" Local date and time: {}, {}", local_date.to_string(culture), local_date.kind());
console::write_line(
" UTC date and time: {}, {}\n", utc_date.to_string(culture), utc_date.kind());
}
}
};
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the ba...
Definition array.hpp:63
static void write_line()
Writes the current line terminator to the standard output stream using the specified format informati...
static date_time utc_now() noexcept
Gets a xtd::date_time object that is set to the current date and time on this computer,...
static date_time now() noexcept
Gets a xtd::date_time object that is set to the current date and time on this computer,...
Provides information about a specific culture (called a locale for unmanaged code development)....
Definition culture_info.hpp:43
#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
Contains classes that define culture-related information, including language, country/region,...
Definition culture_info.hpp:20