Shows how to use xtd::environment class.
#include <xtd/console>
#include <xtd/environment>
void test3() {
console::write_line("environment::stack_trace:");
console::write_line(environment::stack_trace());
}
void test2() {
test3();
}
void test1() {
test2();
}
auto main() -> int {
test1();
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10