xtd 0.2.0
concat_collection.cpp

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

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