Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created November 21, 2022 12:23
Show Gist options
  • Save lgolubyev/5107457fa6ec11e479de7018e20a250b to your computer and use it in GitHub Desktop.
Save lgolubyev/5107457fa6ec11e479de7018e20a250b to your computer and use it in GitHub Desktop.
StringBuilder builder = new StringBuilder();
foreach( var str in stringArray)
{
builder.Append(str);
}
string finalStr= builder.ToString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment