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.
Related Topics
- How to use C# string Clone
- How to use C# string Compare
- How to use C# string Concat
- How to use C# string Contains
- How to use C# string Copy
- How to use C# string CopyTo
- How to use C# string EndsWith
- How to use C# string Equals
- How to use C# string Format
- How to use C# string IndexOf
- How to use C# string Insert
- How to use C# string Length
- How to use C# string Split
- How to use C# string Substring
- How to validate a string using TryParse in C#
- How to C# String Null
- Generate random strings, alphanumeric strings and numbers
Related Topics