Shows how to use xtd::string::join method.
#include <xtd/console>
#include <xtd/string>
auto main() -> int {
auto result_str = string::join(", ", {"One", "Two", "Three", "Four", "Five"});
console::write_line(result_str);
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10