xtd 0.2.0
Loading...
Searching...
No Matches
concat_collection.cpp

Shows how to use xtd::string::concat method.

#include <xtd/xtd>
auto main() -> int {
auto items = {"One ", "Two ", "Three ", "Four "};
console::write_line(string::concat(items));
}
// This code produces the following output :
//
// One Two Three Four