xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
date_time_now2.cpp
Shows how to use
xtd::date_time::now
property.
#include <xtd/xtd>
using namespace
xtd::globalization
;
class
program {
public
:
static
auto
main() {
auto
local_date =
date_time::now
();
auto
culture_names = {
"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));
}
}
};
startup_
(program::main);
// This code can produce the following output :
//
// en-US: 10/23/2025 1:02:39 AM
// en-GB: 23/10/2025 01:02:39
// fr-FR: 23/10/2025 01:02:39
// de-DE: 23.10.2025 01:02:39
// ru-RU: 23.10.2025 01:02:39
xtd::console::write_line
static auto write_line() -> void
Writes the current line terminator to the standard output stream using the specified format informati...
xtd::date_time::now
static auto now() noexcept -> date_time
Gets a xtd::date_time object that is set to the current date and time on this computer,...
xtd::globalization::culture_info
Provides information about a specific culture (called a locale for unmanaged code development)....
Definition
culture_info.hpp:42
startup_
#define startup_(...)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition
startup.hpp:284
xtd::globalization
Contains classes that define culture-related information, including language, country/region,...
Definition
culture_info.hpp:19
Generated on
for xtd by
Gammasoft
. All rights reserved.