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
Append | Appends a typed object to the end of the current StringBuilder. |
AppendFormat | Replaces format specifier with the formatted value of an object. |
Capacity
Insert
MaxCapacity
Remove
Replace
© 2023 Better Solutions Limited. All Rights Reserved. © 2023 Better Solutions Limited TopPrevNext