VB.NET String Operations
The .NET Framework fully supports classes, inheritance, methods, properties, events, polymorphism, constructors, and other Object Oriented features. In a programming language, an Object is defined as an instance of a Class.
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 String class is a sealed class , so you cannot inherit another class from the String class. The following VB.NET programs will teach you more about String Operations.
Related Topics
- How to vb.net String Length()
- How to vb.net String Insert()
- How to vb.net String IndexOf()
- How to vb.net String Format()
- How to vb.net String Equals()
- How to vb.net String CopyTo()
- How to vb.net String Copy()
- How to vb.net String Contains()
- How to vb.net String Compare()
- How to vb.net String Clone()
- How to vb.net String Chars()
- How to vb.net String substring()
- How to vb.net String Split()
- How to vb.net String EndsWith()
- How to vb.net String Concat()
- How to VB.NET String Null
Related Topics