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 "
};
console::write_line
(
ustring::concat
(items));
}
// This code produces the following output:
//
// One Two Three Four
Generated on Mon Oct 9 2023 14:41:55 for xtd by
Gammasoft
. All rights reserved.