C# String Tutorial
A |BLBS^ |string|BLBE^ | in |HREF^CSharp| is an object of type String whose value is text. The string type represents a string of |BLBS^ |Unicode Characters|BLBE^ |. String objects are |BLBS^ |immutable|BLBE^ | that is they cannot be changed after they have been created. String is an alias for System.String in the |HREF^.NET Framework|. Initialize a string with the Empty constant value to create a new String object whose string is of zero length.From the following links you can see some of commonly using C# string operations in detail.
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