1. Use of StringBuilder
Many times, we needed to modify string. Like we needed to append some text to a string.
E.g. string s = “First”; /*Here, New string will be created in memory and address of the memory location will be assigned to variable s.*/
Read More