System.String vs. System.StringBuilder classes - C#.NET

System.String vs. System.StringBuilder classes.

<>System.StringBuilder Class
System.String Class
System.String is immutable.System.StringBuilder is mutable.
Append keyword is not used.Append keyword is used.
System.String is slow.System.StringBuilder is fast.
C#.NET protected internal
C#.NET protected internal - This type of member is available to derived classes and classes within the same Assembly...
Method overriding vs. overloading - C#.NET
C#.NET - Method overriding vs. overloading - Overloading means having a method with the same name within the class...
Difference between the System.Array.CopyTo() and System.Array.Clone() - C#.NET
C#.NET - Difference between the System.Array.CopyTo() and System.Array.Clone() - System.Array.CopyTo() performs a deep copy of the array...
Post your comment