...

/

Strings and String Operations

Strings and String Operations

Learn more about strings and handling textual information.

The string type is an alias for the System.String class. It’s an immutable data type that represents a sequence of Unicode characters:

string someText = "Hello World!";

The immutability of strings is a very important feature we should constantly take into consideration. Immutable means that we can’t change the string. When we want to modify a string ...

String immutability