Skip to content

Instantly share code, notes, and snippets.

@swkwon
Created January 6, 2014 07:59
Show Gist options
  • Save swkwon/8279653 to your computer and use it in GitHub Desktop.
Save swkwon/8279653 to your computer and use it in GitHub Desktop.
string concatenation
static void Main()
{
string text = "In formal language theory and computer programming, " +
"string concatenation is the operation of joining two character strings end-to-end. " +
"For example, the concatenation of 'snow' and 'ball' is 'snowball'. " +
"In some but not all formalizations of concatenation theory, " +
"also called string theory, string concatenation is a primitive notion.";
Console.WriteLine(text);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment