What?s the advantage of using System.Text.StringBuilder over
System.String?
Answer Posted / kirti
StringBuilder is more efficient in cases where there is a large amount of string manipulation. Strings are immutable, so each time it's being operated on, a new instance is created.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does a while loop work?
What are access modifiers used for?
How will you deploy the dll file in gac?
Difference between a sub and a function in c#.
What is meant by unicode characters?
Can hashtable have duplicate keys in c#?
What is event and delegates in c#?
What is helper method in c#?
What is a float?
What are the fundamental differences between value types and reference types?
4. Describe the process when we send a request URL? And who is responsible for that?
Is arraylist faster than linkedlist?
In a C# class we have a SortedList member m_addinProjects
we want to provide an iterator to allow the consumer of
this class access to the items in the collection. Please
provide an iterator method for the AnalyzeAddinsDLL class
below and an example of how it would be used.
namespace AnalyzeAddinsDLL
{
public class AllAddInProjects
{
private SortedList
Any problem found in vs.et
Why extension method is static?