Created
January 6, 2014 07:59
-
-
Save swkwon/8279653 to your computer and use it in GitHub Desktop.
string concatenation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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