Shows how to use xtd::startup class.
#include <xtd/console>
#include <xtd/environment>
#include <xtd/startup>
namespace main1_example {
class program {
public:
static void main() {
for (auto arg : environment::get_command_line_args())
console::write_line(arg);
environment::exit_code(42);
}
};
}
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.h:175
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10