Search This Blog

Monday, November 4, 2013

String Type C#

C# > Types > String

String type represents a sequence of Unicode characters and is a reference type.

Methods


Example:

string a = "Hello";
string b = " world";
// Append ! to contents of b
b += "!";
MessageBox.Show (a + b);