#include "stdafx.h" using namespace System; using namespace System::Text; int main() { StringBuilder^ sb = gcnew StringBuilder("C", 30); sb->Append(gcnew array<Char>{'+','+'}); sb->Append("/CLI."); sb->Insert(0, "asdf "); sb->Replace(".","!"); Console::WriteLine( sb->ToString() ); }