VB Dot Net Developer Question:
Can you please explain the difference between System.String and System.StringBuilder classes?
Answer:
System.string class is non-updatable and it will create new string object instead of updating the same. But updation in the same string object is possible for String. Stringbuilder class. So, the operation on string builder is faster and efficient than the string class.
Previous Question | Next Question |
Explain the use of Option explicit? | Can you please explain the difference between int and int32? |