StringBuilder Class

The System.Text.StringBuilder class is used for creating and modifying strings.
Unlike the String class, the stringBuilder is mutable, when you modify an instance of the stringBuilder class you modify the actual string not a copy.


Stores dynamic strings and can manipulate faster than the String class

Imports System.Text.StringBuilder 


System.Text.StringBuilder 

Properties

AppendAppends a typed object to the end of the current StringBuilder.
AppendFormatReplaces format specifier with the formatted value of an object.

Capacity
Insert
MaxCapacity
Remove
Replace


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext