System.StringBuilder and System.String classes
State the difference between System.StringBuilder and System.String classes?
Expert
StringBuilder and String classes are used for storing string values but the difference in them is that String is immutable (read only) by nature, because any value once assigned to String object cannot be changed after its creation. When value in String object is changed, a new object is created, in the memory, with new value assigned to the String object. Whereas, the StringBuilder class is mutable, since it occupies same space even after the value is changed. StringBuilder class is more efficient where you need to execute huge amount of string manipulation.
Is it a good practice to practise handle the exceptions in code?
Explain what is meant by CTS, and how it is related to the CLS?
What is the role of the DynamicPopulateExtender control?
Write the difference between the Procedural and Object-oriented programming?
Define the term TrackBar control.
What is meant by Manifest?
What do you mean by the term delegate, why must you use it and explain how do you call it?
Explain about object-oriented programming (OOP)?
State classes which are introduced in the System.Numerics namespace.
18,76,764
1929684 Asked
3,689
Active Tutors
1424975
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!