C# String Operations

C# is a strongly typed language. That means that every object you create or use in a C# program must have a specific type. The string type represents a string of Unicode characters. string is an alias for System.String in the .NET Framework.

The String type represents a sequence of zero or more Unicode characters. The String object is Immutable , it cannot be modified once it created, that means every time you use any operation in the String object , you create a new String Object . The following C# programs will teach you more about String Operations.