C# String Theory—String Manipulation

Microsoft .NET Framework, ASP.NET, Visual C# (CSharp, C Sharp, C-Sharp) Developer Training, Visual Studio


Jump to: navigation, search
CSharp-Online.NET:Articles
C# Articles

C# String Theory

edit

String manipulation in C#

The String class contains many public methods which can be used to manipulate strings. The most frequently useful of them are addressed here.

There are two types of string manipulation methods:

  1. String instance methods are called via a string object, e.g. string1.Equals(string2).
  2. String static methods—or class methods— are called via the String class, e.g. String.ReferenceEquals (string1, string2).

See also


Previous_Page_.gif Next_Page_.gif

Personal tools